##// END OF EJS Templates
improved title consistency...
improved title consistency - changed - into dots to save space

File last commit:

r3582:1f334a68 beta
r3582:1f334a68 beta
Show More
followers.html
29 lines | 605 B | text/html | HtmlLexer
#179 Added followers page
r1279 ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
improved title consistency...
r3582 ${_('%s Followers') % c.repo_name} &middot; ${c.rhodecode_name}
#179 Added followers page
r1279 </%def>
<%def name="breadcrumbs_links()">
Leonardo
Fixing missing icons....
r3532 ${_('Followers')}
#179 Added followers page
r1279 </%def>
<%def name="page_nav()">
${self.menu('followers')}
</%def>
<%def name="main()">
leonardo
Addding context bar to more repo related pages....
r3529 ${self.context_bar('followers')}
#179 Added followers page
r1279 <div class="box">
<!-- box / title -->
<div class="title">
${self.breadcrumbs()}
</div>
<!-- end box / title -->
<div class="table">
<div id="followers">
${c.followers_data}
White-space cleanup
r1888 </div>
#179 Added followers page
r1279 </div>
White-space cleanup
r1888 </div>
</%def>