##// END OF EJS Templates
fixed user permissions bug when adding permissions to user who couldn load those because of auth decorators...
fixed user permissions bug when adding permissions to user who couldn load those because of auth decorators Small fix for hg model and injecting dbrepo into cached repos

File last commit:

r362:558eb7c5 rhodecode-0.0.0.8.0 default
r368:e9a6783f default
Show More
branches.html
30 lines | 645 B | text/html | HtmlLexer
version bump to 0.8...
r362 ## -*- coding: utf-8 -*-
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 <%inherit file="/base/base.html"/>
version bump to 0.8...
r362
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 <%def name="title()">
version bump to 0.8...
r362 ${_('Administration')}
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 </%def>
version bump to 0.8...
r362
<%def name="breadcrumbs_links()">
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 ${h.link_to(u'Home',h.url('/'))}
version bump to 0.8...
r362 &raquo;
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 ${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
version bump to 0.8...
r362 &raquo;
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 ${_('branches')}
</%def>
version bump to 0.8...
r362
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 <%def name="page_nav()">
version bump to 0.8...
r362 ${self.menu('branches')}
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 </%def>
version bump to 0.8...
r362
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 <%def name="main()">
version bump to 0.8...
r362 <div class="box">
<!-- box / title -->
<div class="title">
${self.breadcrumbs()}
</div>
<!-- end box / title -->
<div class="table">
<%include file='branches_data.html'/>
</div>
</div>
</%def>