comparison rhodecode/templates/changelog/changelog.html @ 3761:087b50ef7e17 beta

changelog for file history shows that we're in different changelog view
author Marcin Kuzminski <marcin@python-works.com>
date Mon, 15 Apr 2013 22:52:08 +0200
parents 6302a1423a4e
children 5a8918aba869
comparison
equal deleted inserted replaced
3760:6302a1423a4e 3761:087b50ef7e17
1 ## -*- coding: utf-8 -*- 1 ## -*- coding: utf-8 -*-
2 2
3 <%inherit file="/base/base.html"/> 3 <%inherit file="/base/base.html"/>
4 4
5 <%def name="title()"> 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 </%def> 11 </%def>
8 12
9 <%def name="breadcrumbs_links()"> 13 <%def name="breadcrumbs_links()">
10 <% size = c.size if c.size <= c.total_cs else c.total_cs %> 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 </%def> 20 </%def>
13 21
14 <%def name="page_nav()"> 22 <%def name="page_nav()">
15 ${self.menu('repositories')} 23 ${self.menu('repositories')}
16 </%def> 24 </%def>