comparison rhodecode/templates/files/files.html @ 3532:9e677f6d34cb beta

Fixing missing icons. Removing the breadcrumb from the box header, so it will only be on the context bar.
author Leonardo <leo@unity3d.com>
date Tue, 05 Mar 2013 10:39:37 +0100
parents 87c97fcea029
children 7967d00e4692
comparison
equal deleted inserted replaced
3531:1c2371dc86bd 3532:9e677f6d34cb
3 <%def name="title()"> 3 <%def name="title()">
4 ${_('%s files') % c.repo_name} - ${c.rhodecode_name} 4 ${_('%s files') % c.repo_name} - ${c.rhodecode_name}
5 </%def> 5 </%def>
6 6
7 <%def name="breadcrumbs_links()"> 7 <%def name="breadcrumbs_links()">
8 ${h.link_to(_(u'Home'),h.url('/'))} 8 ${_('Files')}
9 &raquo;
10 ${h.repo_link(c.rhodecode_db_repo.groups_and_repo)}
11 &raquo;
12 ${_('files')}
13 %if c.file: 9 %if c.file:
14 @ r${c.changeset.revision}:${h.short_id(c.changeset.raw_id)} 10 @ r${c.changeset.revision}:${h.short_id(c.changeset.raw_id)}
15 %endif 11 %endif
16 </%def> 12 </%def>
17 13