followers.html
33 lines
| 718 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()"> | ||||
Takumi IINO
|
r2492 | ${h.link_to(_(u'Home'),h.url('/'))} | ||
r1888 | » | |||
r3392 | ${h.repo_link(c.rhodecode_db_repo.groups_and_repo)} | |||
r1279 | » | |||
${_('followers')} | ||||
</%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> | ||||