##// END OF EJS Templates
"Users groups" is grammatically incorrect English - rename to "user groups"...
"Users groups" is grammatically incorrect English - rename to "user groups" - and same story with "repositories groups" This will only change the user facing texts. Names of files, modules, functions and variables should be changed too.

File last commit:

r3392:f74be335 beta
r3410:5f1850e4 beta
Show More
followers.html
32 lines | 685 B | text/html | HtmlLexer
## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
${_('%s Followers') % c.repo_name} - ${c.rhodecode_name}
</%def>
<%def name="breadcrumbs_links()">
${h.link_to(_(u'Home'),h.url('/'))}
&raquo;
${h.repo_link(c.rhodecode_db_repo.groups_and_repo)}
&raquo;
${_('followers')}
</%def>
<%def name="page_nav()">
${self.menu('followers')}
</%def>
<%def name="main()">
<div class="box">
<!-- box / title -->
<div class="title">
${self.breadcrumbs()}
</div>
<!-- end box / title -->
<div class="table">
<div id="followers">
${c.followers_data}
</div>
</div>
</div>
</%def>