##// END OF EJS Templates
Bugfix: On the changelog page, its possible that the some changeset is already checked out by the browser. So we check for that on page load.
Bugfix: On the changelog page, its possible that the some changeset is already checked out by the browser. So we check for that on page load.

File last commit:

r3529:1c32b729 beta
r3531:1c2371dc beta
Show More
followers.html
33 lines | 718 B | text/html | HtmlLexer
## -*- 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('/'))}
&raquo;
${h.repo_link(c.rhodecode_db_repo.groups_and_repo)}
&raquo;
${_('followers')}
</%def>
<%def name="page_nav()">
${self.menu('followers')}
</%def>
<%def name="main()">
${self.context_bar('followers')}
<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>