##// END OF EJS Templates
#590 Add GET flag that controls the way the diff are generated, for pull requests we want to use non-bundle based diffs,...
#590 Add GET flag that controls the way the diff are generated, for pull requests we want to use non-bundle based diffs, That are far better for doing code reviews. The /compare url still uses bundle compare for full comparision including the incoming changesets. - Fixed tests

File last commit:

r2427:f467c755 beta
r2892:5fba3778 beta
Show More
followers_data.html
28 lines | 1.1 KiB | text/html | HtmlLexer
## -*- coding: utf-8 -*-
% for f in c.followers_pager:
<div>
<div class="follower_user">
<div class="gravatar">
<img alt="gravatar" src="${h.gravatar_url(f.user.email,24)}"/>
</div>
<span style="font-size: 20px"> <b>${f.user.username}</b> (${f.user.name} ${f.user.lastname})</span>
</div>
<div style="clear:both;padding-top: 10px"></div>
<div class="follower_date">${_('Started following -')}
<span class="tooltip" title="${h.tooltip(f.follows_from)}"> ${h.age(f.follows_from)}</span></div>
<div style="border-bottom: 1px solid #DDD;margin:10px 0px 10px 0px"></div>
</div>
% endfor
<div class="pagination-wh pagination-left">
<script type="text/javascript">
YUE.onDOMReady(function(){
YUE.delegate("followers","click",function(e, matchedEl, container){
ypjax(e.target.href,"followers",function(){show_more_event();tooltip_activate();});
YUE.preventDefault(e);
},'.pager_link');
});
</script>
${c.followers_pager.pager('$link_previous ~2~ $link_next')}
</div>