Files
@ f6ac79182600
Branch filter:
Location: kallithea/pylons_app/templates/users_manage.html - annotation
f6ac79182600
1.2 KiB
text/html
Added rest controllers for repos and users,
templating changes + css fixes
templating changes + css fixes
d924b931b488 d924b931b488 d924b931b488 d924b931b488 d924b931b488 d924b931b488 d924b931b488 d924b931b488 d924b931b488 f6ac79182600 d924b931b488 d924b931b488 d924b931b488 d924b931b488 d924b931b488 d924b931b488 f6ac79182600 f6ac79182600 f6ac79182600 f6ac79182600 f6ac79182600 f6ac79182600 f6ac79182600 f6ac79182600 f6ac79182600 f6ac79182600 d924b931b488 d924b931b488 d924b931b488 d924b931b488 d924b931b488 d924b931b488 f6ac79182600 f6ac79182600 d924b931b488 d924b931b488 d924b931b488 d924b931b488 d924b931b488 d924b931b488 f6ac79182600 d924b931b488 d924b931b488 f6ac79182600 f6ac79182600 f6ac79182600 d924b931b488 | <%inherit file="base/base.html"/>
<%def name="title()">
${_('Repository managment')}
</%def>
<%def name="breadcrumbs()">
${h.link_to(u'Home',h.url('/'))}
/
${h.link_to(u'Admin',h.url('admin_home'))}
/
${h.link_to(u'Users managment',h.url('users'))}
</%def>
<%def name="page_nav()">
<li>${h.link_to(u'Home',h.url('/'))}</li>
<li class="current">${_('Admin')}</li>
</%def>
<%def name="main()">
<ul class="submenu">
<li>
${h.link_to(u'Repos',h.url('repos'))}
</li>
<li class="current_submenu">
${h.link_to(u'Users',h.url('users'))}
</li>
</ul>
<div>
<h2>${_('Mercurial users')}</h2>
<table cellspacing="0">
<tr>
<th>Id</th>
<th>Username</th>
<th>Password</th>
<th>Active</th>
<th>Admin</th>
</tr>
%for i in c.users_list:
<tr>
<td>${i[0]}</td>
<td>${i[1]}</td>
<td>${i[2]}</td>
<td>${i[3]}</td>
<td>${i[4]}</td>
</tr>
%endfor
</table>
</div>
</%def>
|