##// END OF EJS Templates
settings ui: improve texts
settings ui: improve texts

File last commit:

r3198:c20adbaf beta
r3408:a61ac64c beta
Show More
admin_log.html
64 lines | 1.8 KiB | text/html | HtmlLexer
renamed project to rhodecode
r547 ## -*- coding: utf-8 -*-
%if c.users_log:
<table>
Mads Kiilerich
html: don't use tabs
r3197 <tr>
<th class="left">${_('Username')}</th>
<th class="left">${_('Action')}</th>
<th class="left">${_('Repository')}</th>
<th class="left">${_('Date')}</th>
<th class="left">${_('From IP')}</th>
</tr>
renamed project to rhodecode
r547
Mads Kiilerich
html: don't use tabs
r3197 %for cnt,l in enumerate(c.users_log):
<tr class="parity${cnt%2}">
<td>
Implemented better support for Wildcard queries...
r3063 %if l.user is not None:
${h.link_to(l.user.username,h.url('edit_user', id=l.user.user_id))}
%else:
${l.username}
white space cleanup
r3149 %endif
Implemented better support for Wildcard queries...
r3063 </td>
Mads Kiilerich
html: don't use tabs
r3197 <td>${h.action_parser(l)[0]()}
Mads Kiilerich
html: random indentation fixes
r3198 <div class="journal_action_params">
${h.literal(h.action_parser(l)[1]())}
</div>
Mads Kiilerich
html: don't use tabs
r3197 </td>
<td>
Mads Kiilerich
html: random indentation fixes
r3198 %if l.repository is not None:
${h.link_to(l.repository.repo_name,h.url('summary_home',repo_name=l.repository.repo_name))}
%else:
${l.repository_name}
%endif
Mads Kiilerich
html: don't use tabs
r3197 </td>
White-space cleanup
r1888
Mads Kiilerich
html: don't use tabs
r3197 <td>${h.fmt_date(l.action_date)}</td>
<td>${l.user_ip}</td>
</tr>
%endfor
renamed project to rhodecode
r547 </table>
<script type="text/javascript">
added icons to journal, extend show more to actually show more pushed revisions,
r808 YUE.onDOMReady(function(){
added help on how to filter the journal
r3069 YUE.delegate("user_log","click",function(e, matchedEl, container){
ypjax(e.target.href,"user_log",function(){
show_more_event();
tooltip_activate();
show_changeset_tooltip();
});
YUE.preventDefault(e);
},'.pager_link');
White-space cleanup
r1888
added help on how to filter the journal
r3069 YUE.delegate("user_log","click",function(e,matchedEl,container){
var el = e.target;
YUD.setStyle(YUD.get(el.id.substring(1)),'display','');
YUD.setStyle(el.parentNode,'display','none');
},'.show_more');
added icons to journal, extend show more to actually show more pushed revisions,
r808 });
renamed project to rhodecode
r547 </script>
Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
r1421
renamed project to rhodecode
r547 <div class="pagination-wh pagination-left">
Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
r1421 ${c.users_log.pager('$link_previous ~2~ $link_next')}
renamed project to rhodecode
r547 </div>
White-space cleanup
r1888 %else:
Mads Kiilerich
html: don't use tabs
r3197 ${_('No actions yet')}
White-space cleanup
r1888 %endif