## -*- coding: utf-8 -*- <%namespace name="base" file="/base/base.html"/> %if c.users_log: %for cnt,l in enumerate(c.users_log): %endfor
${_('Username')} ${_('Action')} ${_('Repository')} ${_('Date')} ${_('From IP')}
%if l.user is not None: ${base.gravatar_with_user(l.user.email)} %else: ${l.username} %endif ${h.action_parser(l)[0]()}
${h.literal(h.action_parser(l)[1]())}
%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 ${h.format_date(l.action_date)} ${l.user_ip}
${c.users_log.pager('$link_previous ~2~ $link_next')}
%else: ${_('No actions yet')} %endif