followers.html
29 lines
| 598 B
| text/html
|
HtmlLexer
r1279 | ## -*- coding: utf-8 -*- | |||
<%inherit file="/base/base.html"/> | ||||
<%def name="title()"> | ||||
Vincent Duvert
|
r2417 | ${_('%s Followers') % c.repo_name} - ${c.rhodecode_name} | ||
r1279 | </%def> | |||
<%def name="breadcrumbs_links()"> | ||||
Leonardo
|
r3532 | ${_('Followers')} | ||
r1279 | </%def> | |||
<%def name="page_nav()"> | ||||
${self.menu('followers')} | ||||
</%def> | ||||
<%def name="main()"> | ||||
leonardo
|
r3529 | ${self.context_bar('followers')} | ||
r1279 | <div class="box"> | |||
<!-- box / title --> | ||||
<div class="title"> | ||||
${self.breadcrumbs()} | ||||
</div> | ||||
<!-- end box / title --> | ||||
<div class="table"> | ||||
<div id="followers"> | ||||
${c.followers_data} | ||||
r1888 | </div> | |||
r1279 | </div> | |||
r1888 | </div> | |||
</%def> | ||||