diff --git a/rhodecode/templates/admin/admin_log.html b/rhodecode/templates/admin/admin_log.html --- a/rhodecode/templates/admin/admin_log.html +++ b/rhodecode/templates/admin/admin_log.html @@ -12,7 +12,10 @@ %for cnt,l in enumerate(c.users_log): ${h.link_to(l.user.username,h.url('edit_user', id=l.user.user_id))} - ${h.action_parser(l)} + ${h.action_parser(l)[0]} +
+ ${h.literal(h.action_parser(l)[1]())}
+ %if l.repository: ${h.link_to(l.repository.repo_name,h.url('summary_home',repo_name=l.repository.repo_name))} @@ -28,36 +31,23 @@ - - +
-${c.users_log.pager('$link_previous ~2~ $link_next', -onclick="""YAHOO.util.Connect.asyncRequest('GET','$partial_url',{ -success:function(o){ - YUD.get(data_div).innerHTML=o.responseText; - YUE.on(YUD.getElementsByClassName('pager_link'),"click",function(){ - YUD.setStyle(data_div,'opacity','0.3'); - }); - YUE.on(YUD.getElementsByClassName('show_more'),'click',function(e){ - var el = e.target; - YUD.setStyle(YUD.get(el.id.substring(1)),'display',''); - YUD.setStyle(el.parentNode,'display','none'); - }); - YUD.setStyle(data_div,'opacity','1');} - -},null); return false;""")} +${c.users_log.pager('$link_previous ~2~ $link_next')}
%else: ${_('No actions yet')} -%endif +%endif \ No newline at end of file