comparison pylons_app/templates/files/files_source.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 0ebec9b88d13
comparison
equal deleted inserted replaced
409:9b6c1de4ce9e 410:9a7ae16ff53e
1 <dl> 1 <dl>
2 <dt>${_('Last revision')}</dt> 2 <dt>${_('Last revision')}</dt>
3 <dd>r${c.files_list.last_changeset.revision}:${c.files_list.last_changeset._short}</dd> 3 <dd>
4 ${h.link_to("r%s:%s" % (c.files_list.last_changeset.revision,c.files_list.last_changeset._short),
5 h.url('files_home',repo_name=c.repo_name,revision=c.files_list.last_changeset._short,f_path=c.f_path))}
6 </dd>
4 <dt>${_('Size')}</dt> 7 <dt>${_('Size')}</dt>
5 <dd>${h.format_byte_size(c.files_list.size,binary=True)}</dd> 8 <dd>${h.format_byte_size(c.files_list.size,binary=True)}</dd>
6 <dt>${_('Options')}</dt> 9 <dt>${_('Options')}</dt>
7 <dd>${h.link_to(_('show annotation'), 10 <dd>${h.link_to(_('show annotation'),
8 h.url('files_annotate_home',repo_name=c.repo_name,revision=c.cur_rev,f_path=c.f_path))} 11 h.url('files_annotate_home',repo_name=c.repo_name,revision=c.cur_rev,f_path=c.f_path))}
9 / ${h.link_to(_('download as raw'), 12 / ${h.link_to(_('download as raw'),
10 h.url('files_raw_home',repo_name=c.repo_name,revision=c.cur_rev,f_path=c.f_path))} 13 h.url('files_raw_home',repo_name=c.repo_name,revision=c.cur_rev,f_path=c.f_path))}
11 </dd> 14 </dd>
12 <dt>${_('History')}</dt> 15 <dt>${_('History')}</dt>
13 <dd> 16 <dd>
14 ${h.form(h.url('files_diff_home',repo_name=c.repo_name,f_path=c.f_path),method='GET')} 17 <div>
18 ${h.form(h.url('files_diff_home',repo_name=c.repo_name,f_path=c.f_path),method='get')}
15 ${h.hidden('diff2',c.files_list.last_changeset._short)} 19 ${h.hidden('diff2',c.files_list.last_changeset._short)}
16 ${h.select('diff1','',c.file_history)} 20 ${h.select('diff1','',c.file_history)}
17 ${h.submit('diff','diff',class_="ui-button ui-widget ui-state-default ui-corner-all")} 21 ${h.submit('diff','diff',class_="ui-button ui-widget ui-state-default ui-corner-all")}
18 ${h.end_form()} 22 ${h.end_form()}
23 </div>
19 </dd> 24 </dd>
20 </dl> 25 </dl>
21 26
22 27
23 <div id="body" class="codeblock"> 28 <div id="body" class="codeblock">