Files
@ 95c38de476a7
Branch filter:
Location: kallithea/rhodecode/templates/followers/followers.html - annotation
95c38de476a7
703 B
text/html
cleanup would recurse into every leaf and could thus not be used on lots of
large repositories.
large repositories.
cb216757a62d cb216757a62d cb216757a62d cb216757a62d 76d156bef5a2 cb216757a62d cb216757a62d cb216757a62d 79818f546538 f91d3f9b7230 cb216757a62d cb216757a62d cb216757a62d cb216757a62d cb216757a62d cb216757a62d cb216757a62d cb216757a62d cb216757a62d cb216757a62d cb216757a62d cb216757a62d cb216757a62d cb216757a62d cb216757a62d cb216757a62d cb216757a62d cb216757a62d f91d3f9b7230 cb216757a62d f91d3f9b7230 f91d3f9b7230 | ## -*- 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('/'))}
»
${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
»
${_('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>
|