%namespace name="base" file="/base/base.html"/>
% if c.authors:
% for email, user in sorted(c.authors, key=lambda e: c.file_last_commit.author_email!=e[0]):
-
${base.gravatar(email, 16)}
## case initial page load we only have last commit author
% if c.file_author:
${h.link_to_user(user)} - ${h.age_component(c.file_last_commit.date)}
% else:
% if c.file_last_commit.author_email==email:
${h.link_to_user(user)} (${_('last author')})
% else:
${h.link_to_user(user)}
% endif
% endif
% endfor
% endif