##// END OF EJS Templates
settings: simplify handling of form values for hooks and extensions...
settings: simplify handling of form values for hooks and extensions This makes simpler to follow the code path and search for input input field names. The form field names are hardcoded in the template, so generating them programmatically in the controller do not really add any flexibility.

File last commit:

r3552:7967d00e beta
r3570:8173b0cf beta
Show More
shortlog.html
36 lines | 770 B | text/html | HtmlLexer
renamed project to rhodecode
r547 ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
Vincent Duvert
Better i18n for page titles.
r2417 ${_('%s Shortlog') % c.repo_name} - ${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:
Leonardo
Fixing missing icons....
r3532 ${h.link_to(_('Shortlog'),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:
Leonardo
Fixing missing icons....
r3532 ${_('Shortlog')}
Implemented file history page for showing detailed changelog for a given file...
r3039 %endif
renamed project to rhodecode
r547 </%def>
<%def name="page_nav()">
${self.menu('shortlog')}
</%def>
<%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>