##// END OF EJS Templates
invalidation: don't create CacheInvalidation records on startup...
invalidation: don't create CacheInvalidation records on startup Creating the records early gave an advantage before lightweight was introduced. With lightweight it is no longer necessary. The records will be created on demand anyway and there is no reason to create and maintain them before they are used.

File last commit:

r3603:eacd33e0 beta
r3774:60335b70 beta
Show More
followers.html
29 lines | 608 B | text/html | HtmlLexer
#179 Added followers page
r1279 ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
improved title consistency...
r3582 ${_('%s Followers') % c.repo_name} &middot; ${c.rhodecode_name}
#179 Added followers page
r1279 </%def>
<%def name="breadcrumbs_links()">
Leonardo
Fixing missing icons....
r3532 ${_('Followers')}
#179 Added followers page
r1279 </%def>
<%def name="page_nav()">
Mads Kiilerich
use valid options for the top menu: repositories, journal, search and admin
r3603 ${self.menu('repositories')}
#179 Added followers page
r1279 </%def>
<%def name="main()">
leonardo
Addding context bar to more repo related pages....
r3529 ${self.context_bar('followers')}
#179 Added followers page
r1279 <div class="box">
<!-- box / title -->
<div class="title">
${self.breadcrumbs()}
</div>
<!-- end box / title -->
<div class="table">
<div id="followers">
${c.followers_data}
White-space cleanup
r1888 </div>
#179 Added followers page
r1279 </div>
White-space cleanup
r1888 </div>
</%def>