##// END OF EJS Templates
Added h.tooltip to all places that tooltip_title is used....
Added h.tooltip to all places that tooltip_title is used. - improved escaping of < and > inside tooltips

File last commit:

r2417:76d156be beta
r2427:f467c755 beta
Show More
followers.html
32 lines | 700 B | text/html | HtmlLexer
#179 Added followers page
r1279 ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
Vincent Duvert
Better i18n for page titles.
r2417 ${_('%s Followers') % c.repo_name} - ${c.rhodecode_name}
#179 Added followers page
r1279 </%def>
<%def name="breadcrumbs_links()">
${h.link_to(u'Home',h.url('/'))}
White-space cleanup
r1888 &raquo;
#179 Added followers page
r1279 ${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}
White-space cleanup
r1888 </div>
#179 Added followers page
r1279 </div>
White-space cleanup
r1888 </div>
</%def>