Files
@ c77d5c6358eb
Branch filter:
Location: kallithea/rhodecode/templates/followers/followers_data.html - annotation
c77d5c6358eb
1.1 KiB
text/html
Implemented #670 Implementation of Roles in Pull Request
- only owner, reviewer or admin can change status or close pull request
- only owner, reviewer or admin can change status or close pull request
cb216757a62d cb216757a62d cb216757a62d cb216757a62d cb216757a62d cb216757a62d cb216757a62d cb216757a62d cb216757a62d cb216757a62d cb216757a62d a78cd80ad385 f467c75544af cb216757a62d f91d3f9b7230 f91d3f9b7230 cb216757a62d cb216757a62d cb216757a62d c6b811f11c94 c6b811f11c94 2bfcec6a3985 2bfcec6a3985 2bfcec6a3985 9937afa7f093 2bfcec6a3985 c6b811f11c94 c6b811f11c94 c6b811f11c94 cb216757a62d c6b811f11c94 f91d3f9b7230 | ## -*- 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();
show_changeset_tooltip();
});
YUE.preventDefault(e);
},'.pager_link');
});
</script>
${c.followers_pager.pager('$link_previous ~2~ $link_next')}
</div>
|