##// END OF EJS Templates
moved permission management into separate entity....
moved permission management into separate entity. - this solves issues when whole form submision could influence permission management particular case is that when repo group permission is revoked and user is no longer able to update repository settings

File last commit:

r3603:eacd33e0 beta
r3628:c734686b beta
Show More
shortlog.html
37 lines | 821 B | text/html | HtmlLexer
renamed project to rhodecode
r547 ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
improved title consistency...
r3582 ${_('%s Lightweight Changelog') % c.repo_name} &middot; ${c.rhodecode_name}
renamed project to rhodecode
r547 </%def>
<%def name="breadcrumbs_links()">
Implemented file history page for showing detailed changelog for a given file...
r3039 %if c.file_history:
improved title consistency...
r3582 ${h.link_to(_('Lightweight Changelog'),h.url('shortlog_home',repo_name=c.repo_name))}
Implemented file history page for showing detailed changelog for a given file...
r3039 &raquo;
${c.file_history}
%else:
improved title consistency...
r3582 ${_('Lightweight Changelog')}
Implemented file history page for showing detailed changelog for a given file...
r3039 %endif
renamed project to rhodecode
r547 </%def>
<%def name="page_nav()">
Mads Kiilerich
use valid options for the top menu: repositories, journal, search and admin
r3603 ${self.menu('repositories')}
renamed project to rhodecode
r547 </%def>
Mads Kiilerich
use valid options for the top menu: repositories, journal, search and admin
r3603
renamed project to rhodecode
r547 <%def name="main()">
Mads Kiilerich
Stylistic cleanup - mostly formatting
r3552 ${self.context_bar('options')}
renamed project to rhodecode
r547 <div class="box">
<!-- box / title -->
<div class="title">
${self.breadcrumbs()}
</div>
<!-- end box / title -->
<div class="table">
Mads Kiilerich
html: don't use tabs
r3197 <div id="shortlog_data">
${c.shortlog_data}
</div>
renamed project to rhodecode
r547 </div>
White-space cleanup
r1888 </div>
</%def>