mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-12-25 05:22:36 +00:00
10 lines
224 B
Python
10 lines
224 B
Python
# coding: utf-8
|
|
|
|
from django.shortcuts import render_to_response
|
|
|
|
|
|
def user_add(request):
|
|
return render_to_response('user_add.html', {'header_title': u'添加用户 | Add User', 'path1': 'juser', 'path2': 'user_add'})
|
|
|
|
|