comparison rhodecode/templates/changelog/changelog.html @ 3392:f74be3359044 beta

unified breadcrumbs display
author Marcin Kuzminski <marcin@python-works.com>
date Thu, 21 Feb 2013 01:53:15 +0100
parents c9b0f1d363c7
children 0f15f88e69c1 87c97fcea029
comparison
equal deleted inserted replaced
3391:f282c81ff532 3392:f74be3359044
7 </%def> 7 </%def>
8 8
9 <%def name="breadcrumbs_links()"> 9 <%def name="breadcrumbs_links()">
10 ${h.link_to(_(u'Home'),h.url('/'))} 10 ${h.link_to(_(u'Home'),h.url('/'))}
11 &raquo; 11 &raquo;
12 ${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))} 12 ${h.repo_link(c.rhodecode_db_repo.groups_and_repo)}
13 &raquo; 13 &raquo;
14 <% 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 %>
15 ${_('Changelog')} - ${ungettext('showing %d out of %d revision', 'showing %d out of %d revisions', size) % (size, c.total_cs)} 15 ${_('changelog')} - ${ungettext('showing %d out of %d revision', 'showing %d out of %d revisions', size) % (size, c.total_cs)}
16 </%def> 16 </%def>
17 17
18 <%def name="page_nav()"> 18 <%def name="page_nav()">
19 ${self.menu('changelog')} 19 ${self.menu('changelog')}
20 </%def> 20 </%def>