2015-01-05 10:21:34 +00:00
|
|
|
#coding:utf-8
|
2014-12-22 09:18:51 +00:00
|
|
|
from django.shortcuts import render
|
2015-01-05 10:21:34 +00:00
|
|
|
from django.http import HttpResponse
|
|
|
|
from django.template import RequestContext
|
|
|
|
from django.shortcuts import render_to_response
|
|
|
|
from django.http import HttpResponseRedirect
|
2014-12-22 09:18:51 +00:00
|
|
|
|
2015-01-05 10:21:34 +00:00
|
|
|
|
|
|
|
def index(request):
|
|
|
|
return render_to_response('jasset/jasset.html',)
|
|
|
|
|
|
|
|
|
|
|
|
def jadd(request):
|
|
|
|
if request.method == 'POST':
|
|
|
|
pass
|
|
|
|
return render_to_response('jasset/jadd.html',)
|