##// END OF EJS Templates
repos, repo groups, user groups: allow to use disabled users in owner field....
repos, repo groups, user groups: allow to use disabled users in owner field. This fixes #3374. There's no good benefit of having possibility to prevent setting disabled user from beeing an owner. It can happen that we start preperating a system and use disabled accounts. Also users shouldn't be forbidden to edit settings on an disabled owner.

File last commit:

r155:bb64dc25 default
r224:c6a3436d default
Show More
followers_data.html
31 lines | 973 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();
tooltip_activate();
show_changeset_tooltip();
});
</script>
${c.followers_pager.pager('$link_previous ~2~ $link_next')}
</div>