comparison pylons_app/templates/admin/admin_log.html @ 476:8ba65e4c4e4c celery

added journal icon and made active links in journal, fixed edit user bug when given wrong id
author Marcin Kuzminski <marcin@python-works.com>
date Mon, 13 Sep 2010 13:02:20 +0200
parents 558eb7c5028f
children 3d6d548ad3cc
comparison
equal deleted inserted replaced
475:9dd38344c466 476:8ba65e4c4e4c
9 <th class="left">${_('From IP')}</th> 9 <th class="left">${_('From IP')}</th>
10 </tr> 10 </tr>
11 11
12 %for cnt,l in enumerate(c.users_log): 12 %for cnt,l in enumerate(c.users_log):
13 <tr class="parity${cnt%2}"> 13 <tr class="parity${cnt%2}">
14 <td>${l.user.username}</td> 14 <td>${h.link_to(l.user.username,h.url('edit_user', id=l.user.user_id))}</td>
15 <td>${l.repository}</td> 15 <td>${h.link_to(l.repository,h.url('summary_home',repo_name=l.repository))}</td>
16 <td>${l.action}</td> 16 <td>${l.action}</td>
17 <td>${l.action_date}</td> 17 <td>${l.action_date}</td>
18 <td>${l.user_ip}</td> 18 <td>${l.user_ip}</td>
19 </tr> 19 </tr>
20 %endfor 20 %endfor