From 8c9e763f74d99841dc33adddc53c79262817d09c Mon Sep 17 00:00:00 2001 From: guanghongwei Date: Sat, 10 Jan 2015 16:24:44 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E9=BB=98=E8=AE=A4=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jumpserver/views.py | 2 -- juser/views.py | 20 +++++++------------- templates/juser/user_add.html | 29 ++++++++++++++++++----------- 3 files changed, 25 insertions(+), 26 deletions(-) diff --git a/jumpserver/views.py b/jumpserver/views.py index 9c5cfc0ff..ef9c9560c 100644 --- a/jumpserver/views.py +++ b/jumpserver/views.py @@ -12,5 +12,3 @@ def skin_config(request): return render_to_response('skin_config.html') -def header_path(header_title, path1, path2): - return header_title, path1, path2 diff --git a/juser/views.py b/juser/views.py index d2a28ccdb..e632ef9f0 100644 --- a/juser/views.py +++ b/juser/views.py @@ -10,7 +10,6 @@ from django.shortcuts import render_to_response from juser.models import UserGroup, User from connect import PyCrypt, KEY -from jumpserver.views import header_path cryptor = PyCrypt(KEY) @@ -37,7 +36,7 @@ class AddError(Exception): def group_add(request): error = '' msg = '' - header_title, path1, path2 = header_path('添加属组 | Add Group', 'juser', 'group_add') + header_title, path1, path2 = '添加属组 | Add Group', 'juser', 'group_add' if request.method == 'POST': group_name = request.POST.get('group_name', None) @@ -69,12 +68,10 @@ def group_add(request): def group_list(request): - + header_title, path1, path2 = '查看属组 | Add Group', 'juser', 'group_add' groups = UserGroup.objects.all() return render_to_response('juser/group_list.html', - {'header_title': u'查看属组 | Add Group', - 'path1': 'juser', 'path2': 'group_add', - 'groups': groups}) + locals()) def user_list(request): @@ -100,7 +97,7 @@ def db_del_user(username): def user_add(request): error = '' msg = '' - + header_title, path1, path2 = '添加用户 | Add User', 'juser', 'user_add' user_role = {'SU': u'超级管理员', 'GA': u'组管理员', 'CU': u'普通用户'} all_group = UserGroup.objects.all() if request.method == 'POST': @@ -109,13 +106,13 @@ def user_add(request): name = request.POST.get('name', None) email = request.POST.get('email', '') groups = request.POST.getlist('groups', None) - role = request.POST.get('role', None) + role_post = request.POST.get('role', None) ssh_pwd = request.POST.get('ssh_pwd', None) ssh_key_pwd1 = request.POST.get('ssh_key_pwd1', None) is_active = request.POST.get('is_active', '1') try: - if None in [username, password, ssh_key_pwd1, name, groups, role, is_active]: + if None in [username, password, ssh_key_pwd1, name, groups, role_post, is_active]: error = u'带*内容不能为空' raise AddError user = User.objects.filter(username=username) @@ -132,10 +129,7 @@ def user_add(request): is_active=is_active, date_joined=time_now) msg = u'添加用户成功' return render_to_response('juser/user_add.html', - {'header_title': u'添加用户 | Add User', - 'path1': 'juser', 'path2': 'user_add', - 'roles': user_role, 'all_group': all_group, - 'error': error, 'msg': msg}) + locals()) diff --git a/templates/juser/user_add.html b/templates/juser/user_add.html index 01430bbfe..42a724426 100644 --- a/templates/juser/user_add.html +++ b/templates/juser/user_add.html @@ -37,14 +37,14 @@
- +
- + 登陆web的密码 @@ -54,7 +54,7 @@
- + 登陆 Jumpserver 使用的SSH密钥的密码 @@ -64,7 +64,7 @@
- +
@@ -73,10 +73,14 @@
@@ -87,8 +91,12 @@
@@ -97,7 +105,7 @@
- + 如果使用password方式,该密码是用户在后端服务器的密码 @@ -107,12 +115,11 @@
- +
-