##// END OF EJS Templates
pullrequest: use simple link for 'Change style'...
pullrequest: use simple link for 'Change style' This seems to be more obvious and not require any explanation. The checkbox is kept but made invisible - just to avoid controller changes.

File last commit:

r3582:1f334a68 beta
r3593:716ac765 beta
Show More
followers.html
29 lines | 605 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('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>