## -*- coding: utf-8 -*- <%inherit file="/base/base.html"/> <%def name="title()"> ${_('Users administration')} <%def name="breadcrumbs()"> ${h.link_to(u'Admin',h.url('admin_home'))} / ${_('Users')} <%def name="page_nav()"> ${self.menu('admin')} ${self.submenu('users')} <%def name="main()">

${_('Mercurial users')}

%for user in c.users_list: %endfor
${_('username')} ${_('name')} ${_('lastname')} ${_('active')} ${_('admin')} ${_('action')}
${h.link_to(user.username,h.url('edit_user', id=user.user_id))} ${user.name} ${user.lastname} ${user.active} ${user.admin} ${h.form(url('user', id=user.user_id),method='delete')} ${h.submit('remove','delete',class_="delete_icon action_button")} ${h.end_form()}
${h.link_to(u'add user',h.url('new_user'))}