##// END OF EJS Templates
Added missing __get_cs_or_redirect method for file history....
Added missing __get_cs_or_redirect method for file history. Fixes issue with displaying a history of file that is not present at tip.

File last commit:

r3988:072a37c4 default
r3996:267bb347 default
Show More
followers.html
29 lines | 613 B | text/html | HtmlLexer
## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
${_('%s Followers') % c.repo_name} &middot; ${c.rhodecode_name}
</%def>
<%def name="breadcrumbs_links()">
${_('Followers')}
</%def>
<%def name="page_nav()">
${self.menu('repositories')}
</%def>
<%def name="main()">
${self.repo_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>