admin_log.html
54 lines
| 1.4 KiB
| text/html
|
HtmlLexer
r547 | ## -*- coding: utf-8 -*- | |||
%if c.users_log: | ||||
<table> | ||||
<tr> | ||||
<th class="left">${_('Username')}</th> | ||||
r660 | <th class="left">${_('Action')}</th> | |||
r547 | <th class="left">${_('Repository')}</th> | |||
<th class="left">${_('Date')}</th> | ||||
<th class="left">${_('From IP')}</th> | ||||
</tr> | ||||
%for cnt,l in enumerate(c.users_log): | ||||
<tr class="parity${cnt%2}"> | ||||
<td>${h.link_to(l.user.username,h.url('edit_user', id=l.user.user_id))}</td> | ||||
r2375 | <td>${h.action_parser(l)[0]()} | |||
r1066 | <div class="journal_action_params"> | |||
r2379 | ${h.literal(h.action_parser(l)[1]())} | |||
r2376 | </div> | |||
r1066 | </td> | |||
r547 | <td> | |||
r2376 | %if l.repository is not None: | |||
r547 | ${h.link_to(l.repository.repo_name,h.url('summary_home',repo_name=l.repository.repo_name))} | |||
%else: | ||||
${l.repository_name} | ||||
%endif | ||||
</td> | ||||
r1888 | ||||
Vincent Duvert
|
r2416 | <td>${h.fmt_date(l.action_date)}</td> | ||
r547 | <td>${l.user_ip}</td> | |||
</tr> | ||||
%endfor | ||||
</table> | ||||
<script type="text/javascript"> | ||||
r808 | YUE.onDOMReady(function(){ | |||
r1421 | YUE.delegate("user_log","click",function(e, matchedEl, container){ | |||
ypjax(e.target.href,"user_log",function(){show_more_event();tooltip_activate();}); | ||||
YUE.preventDefault(e); | ||||
},'.pager_link'); | ||||
r1888 | ||||
r1421 | YUE.delegate("user_log","click",function(e,matchedEl,container){ | |||
r808 | var el = e.target; | |||
YUD.setStyle(YUD.get(el.id.substring(1)),'display',''); | ||||
YUD.setStyle(el.parentNode,'display','none'); | ||||
r1421 | },'.show_more'); | |||
r808 | }); | |||
r547 | </script> | |||
r1421 | ||||
r547 | <div class="pagination-wh pagination-left"> | |||
r1421 | ${c.users_log.pager('$link_previous ~2~ $link_next')} | |||
r547 | </div> | |||
r1888 | %else: | |||
${_('No actions yet')} | ||||
%endif | ||||