comparison pylons_app/templates/files/files_annotate.html @ 410:9a7ae16ff53e

fixes translations, style updates. Added some extra info to activity graph
author Marcin Kuzminski <marcin@python-works.com>
date Wed, 18 Aug 2010 16:24:27 +0200
parents 2a18192fbd1e
children 9836541b0509
comparison
equal deleted inserted replaced
409:9b6c1de4ce9e 410:9a7ae16ff53e
24 <div class="table"> 24 <div class="table">
25 <div id="files_data"> 25 <div id="files_data">
26 <h2>${_('Location')}: ${h.files_breadcrumbs(c.repo_name,c.cur_rev,c.file.path)}</h2> 26 <h2>${_('Location')}: ${h.files_breadcrumbs(c.repo_name,c.cur_rev,c.file.path)}</h2>
27 <dl class="overview"> 27 <dl class="overview">
28 <dt>${_('Last revision')}</dt> 28 <dt>${_('Last revision')}</dt>
29 <dd>r${c.file.last_changeset.revision}:${c.file.last_changeset._short}</dd> 29 <dd>${h.link_to("r%s:%s" % (c.file.last_changeset.revision,c.file.last_changeset._short),
30 h.url('files_annotate_home',repo_name=c.repo_name,revision=c.file.last_changeset._short,f_path=c.f_path))} </dd>
30 <dt>${_('Size')}</dt> 31 <dt>${_('Size')}</dt>
31 <dd>${h.format_byte_size(c.file.size,binary=True)}</dd> 32 <dd>${h.format_byte_size(c.file.size,binary=True)}</dd>
32 <dt>${_('Options')}</dt> 33 <dt>${_('Options')}</dt>
33 <dd>${h.link_to(_('show source'), 34 <dd>${h.link_to(_('show source'),
34 h.url('files_home',repo_name=c.repo_name,revision=c.cur_rev,f_path=c.f_path))} 35 h.url('files_home',repo_name=c.repo_name,revision=c.cur_rev,f_path=c.f_path))}