##// END OF EJS Templates
diffs: compare overhaul....
diffs: compare overhaul. - made compare and commit range pages more consistent with other commit diff pages - removed mergerly, closes #4665. Old diff2way is replaced by new diffs with side-by-side mode. - cleanup button behaviour on compare page. Added help text and generally improved UX - switched file-diffs to compare page with file filter. Part of #4000 - added collapse/expand commits buttons in compare views.

File last commit:

r385:4c58728c default
r1259:8e9f93ec default
Show More
followers_data.html
29 lines | 911 B | text/html | HtmlLexer
## -*- coding: utf-8 -*-
<%namespace name="base" file="/base/base.html"/>
<table class="rctable followers_data">
<tr>
<th>${_('Follower Name')}</th>
<th>${_('Following Since')}</th>
</tr>
% for f in c.followers_pager:
<tr>
<td class="td-user follower_user">
${base.gravatar_with_user(f.user.email, 16)}
</td>
<td class="td-time follower_date">
${h.age_component(f.follows_from, time_is_local=True)}
</td>
</tr>
% endfor
</table>
<div class="pagination-wh pagination-left">
<script type="text/javascript">
$(document).pjax('#followers.pager_link','#followers');
$(document).on('pjax:success',function(){
show_more_event();
timeagoActivate();
});
</script>
${c.followers_pager.pager('$link_previous ~2~ $link_next')}
</div>