Changeset - 0eedbbc58ed9
[Not reviewed]
default
0 1 0
Marcin Kuzminski - 15 years ago 2010-05-25 22:03:10
marcin@python-works.com
translated users
1 file changed with 5 insertions and 5 deletions:
0 comments (0 inline, 0 general)
pylons_app/templates/admin/users/users.html
Show inline comments
 
@@ -14,17 +14,17 @@
 
</%def>
 
<%def name="main()">
 
	<div>
 
        <h2>${_('Mercurial users')}</h2>
 
        <table class="table_disp">
 
         <tr class="header">
 
            <td>ID</td>
 
            <td>Username</td>
 
            <td>Active</td>
 
            <td>Admin</td>
 
            <td>Action</td>
 
            <td>${_('id')}</td>
 
            <td>${_('username')}</td>
 
            <td>${_('active')}</td>
 
            <td>${_('admin')}</td>
 
            <td>${_('action')}</td>
 
         </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>
0 comments (0 inline, 0 general)