mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
415 B
16 lines
415 B
#coding:utf-8
|
|
from django.shortcuts import render
|
|
from django.http import HttpResponse
|
|
from django.template import RequestContext
|
|
from django.shortcuts import render_to_response
|
|
from django.http import HttpResponseRedirect
|
|
|
|
|
|
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',) |