##// END OF EJS Templates
changelog for file history shows that we're in different changelog view
marcink -
r3761:087b50ef beta
parent child Browse files
Show More
@@ -3,12 +3,20 b''
3 3 <%inherit file="/base/base.html"/>
4 4
5 5 <%def name="title()">
6 ${_('%s Changelog') % c.repo_name} &middot; ${c.rhodecode_name}
6 ${_('%s Changelog') % c.repo_name} &middot;
7 %if c.changelog_for_path:
8 /${c.changelog_for_path} &middot;
9 %endif
10 ${c.rhodecode_name}
7 11 </%def>
8 12
9 13 <%def name="breadcrumbs_links()">
10 14 <% size = c.size if c.size <= c.total_cs else c.total_cs %>
11 ${_('Changelog')} - ${ungettext('showing %d out of %d revision', 'showing %d out of %d revisions', size) % (size, c.total_cs)}
15 ${_('Changelog')}
16 %if c.changelog_for_path:
17 - /${c.changelog_for_path}
18 %endif
19 - ${ungettext('showing %d out of %d revision', 'showing %d out of %d revisions', size) % (size, c.total_cs)}
12 20 </%def>
13 21
14 22 <%def name="page_nav()">
General Comments 0
You need to be logged in to leave comments. Login now