comparison rhodecode/templates/changelog/changelog.html @ 3582:1f334a68d057 beta

improved title consistency - changed - into dots to save space
author Marcin Kuzminski <marcin@python-works.com>
date Sun, 24 Mar 2013 22:01:31 +0100
parents 58dcef7eef03
children acc264c649d6
comparison
equal deleted inserted replaced
3581:93d912ea8cb1 3582:1f334a68d057
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} - ${c.rhodecode_name} 6 ${_('%s Changelog') % c.repo_name} &middot; ${c.rhodecode_name}
7 </%def> 7 </%def>
8 8
9 <%def name="breadcrumbs_links()"> 9 <%def name="breadcrumbs_links()">
10 <% size = c.size if c.size <= c.total_cs else c.total_cs %> 10 <% 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)} 11 ${_('Changelog')} - ${ungettext('showing %d out of %d revision', 'showing %d out of %d revisions', size) % (size, c.total_cs)}