Files @ 70f645fa97cc
Branch filter:

Location: kallithea/pylons_app/templates/admin/users/users.html

Marcin Kuzminski
Moved repo creation to admin/repos, as part of crud controller. Now repo creation is based on a form, which can be auto filled with data from 404 page. Fixed the error controller to properly give the repo name.
<%inherit file="/base/base.html"/>
<%def name="title()">
    ${_('Users managment')}
</%def>
<%def name="breadcrumbs()">
    ${h.link_to(u'Admin',h.url('admin_home'))}
    /
    ${h.link_to(u'Users managment',h.url('users'))}
</%def>
<%def name="page_nav()">
	${self.menu('admin')}
</%def>
<%def name="main()">
    <ul class="submenu">
        <li>
            ${h.link_to(u'Repos',h.url('repos'))}
        </li>
        <li>
            ${h.link_to(u'Users',h.url('users'), class_="current_submenu")}
        </li>
    </ul>
	<div>
        <h2>${_('Mercurial users')}</h2>
        <table>
         <tr>
            <th>Id</th>
            <th>Username</th>
            <th>Active</th>
            <th>Admin</th>
            <th>Action</th>
         </tr>
            %for user in c.users_list:
                <tr>
                    <td>${user.user_id}</td>
                    <td>${h.link_to(user.username,h.url('edit_user', id=user.user_id))}</td>
                    <td>${user.active}</td>
                    <td>${user.admin}</td>
                    <td>
	                    ${h.form(url('user', id=user.user_id),method='delete')}
	                    	${h.submit('remove','remove',class_="submit")}
	                    ${h.end_form()}
        			</td>
                </tr>
            %endfor
        </table>
        <h3>${h.link_to(u'Add user',h.url('new_user'))}</h3>        
    </div>

</%def>