comparison rhodecode/templates/admin/admin_log.html @ 2375:bc2d8c03c050 beta

Implemented #467 Journal logs comments on changesets - added created/updated user action to journal - added created/updated users group action journal - added ip adresses to most of action_log calls to track IP changes - rewrote action_parser to simpler and more efficient solution
author Marcin Kuzminski <marcin@python-works.com>
date Sun, 03 Jun 2012 00:40:14 +0200
parents f91d3f9b7230
children 679363531571
comparison
equal deleted inserted replaced
2374:be2163ef127e 2375:bc2d8c03c050
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>${h.link_to(l.user.username,h.url('edit_user', id=l.user.user_id))}</td> 14 <td>${h.link_to(l.user.username,h.url('edit_user', id=l.user.user_id))}</td>
15 <td>${h.action_parser(l)[0]} 15 <td>${h.action_parser(l)[0]()}
16 <div class="journal_action_params"> 16 <div class="journal_action_params">
17 ${h.literal(h.action_parser(l)[1]())}</div> 17 ${h.literal(h.action_parser(l)[1]())}</div>
18 </td> 18 </td>
19 <td> 19 <td>
20 %if l.repository: 20 %if l.repository: