diff --git a/pylons_app/templates/admin_log.html b/pylons_app/templates/admin_log.html new file mode 100644 --- /dev/null +++ b/pylons_app/templates/admin_log.html @@ -0,0 +1,29 @@ +%if c.users_log: + + + + + + + + + %for cnt,l in enumerate(c.users_log): + + + + + + + %endfor + + + + +
${_('Username')}${_('Repository')}${_('Action')}${_('Date')}
${l.user.username}${l.repository}${l.action}${l.action_date}
${c.users_log.pager('$link_previous ~2~ $link_next', + onclick="""YAHOO.util.Connect.asyncRequest('GET','$partial_url',{ + success:function(o){YAHOO.util.Dom.get('user_log').innerHTML=o.responseText;} + },null); return false;""")}
+ +%else: + ${_('No actions yet')} +%endif