##// END OF EJS Templates
Killed home button. It's a wast of space, and every other major service simply doesn't have a home button. Getting to home can be...
Killed home button. It's a wast of space, and every other major service simply doesn't have a home button. Getting to home can be always achieved by clicking the Instance title on the left side

File last commit:

r2492:79818f54 beta
r3210:5d0ad07d beta
Show More
followers.html
32 lines | 703 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.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
&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>