Browse Source

修改

pull/2/head
guanghongwei 10 years ago
parent
commit
1a529a7d7f
  1. 8
      webroot/AutoSa/AutoSa/views.py
  2. 4
      webroot/AutoSa/templates/showUser.html

8
webroot/AutoSa/AutoSa/views.py

@ -609,16 +609,20 @@ def showSudo(request):
if not username:
return HttpResponseRedirect('/showUser/')
l = LDAPMgmt()
result = l.list('entryDN=cn=%s,Sudoers,%s' % (str(username), ldap_base_dn), attr=['sudoHost', 'sudoCommand'])
result = l.list('entryDN=cn=%s,ou=Sudoers,%s' % (str(username), ldap_base_dn), attr=['sudoHost', 'sudoCommand'])
sudoHost = result.get('sudoHost')
sudoCommand = result.get('sudoCommand')
return render_to_response('showSudo.html',
{'sudoHost': sudoHost,
{'username': username,
'sudoHost': sudoHost,
'sudoCommand': sudoCommand,
'user_menu': 'active'},
context_instance=RequestContext(request))
@admin_required
def chgSudo(request):
pass

4
webroot/AutoSa/templates/showUser.html

@ -41,8 +41,8 @@
<td>{{ user.email }}</td>
<td><a href="/downKey/?username={{ user.username }}">下载</a></td>
<td><a href="/chgUser/?username={{ user.username }}">修改</a></td>
<td><a href="/showSudo/?username={{ user.username }">查看</a></td>
<td><a href="/chgSudo/?username={{ user.username }">修改</a></td>
<td><a href="/showSudo/?username={{ user.username }}">查看</a></td>
<td><a href="/chgSudo/?username={{ user.username }}">修改</a></td>
</tr>
{% endfor %}
</tbody>

Loading…
Cancel
Save