##// END OF EJS Templates
#551 show breadcrumbs in summary view for repositories inside a group
marcink -
r2811:b1467856 beta
parent child Browse files
Show More
@@ -20,6 +20,7 b' news'
20 20 later for light version of main page ref #500
21 21 - pull request notifications send much nicer emails with details about pull
22 22 request
23 - #551 show breadcrumbs in summary view for repositories inside a group
23 24
24 25 fixes
25 26 +++++
@@ -5,7 +5,8 b''
5 5 </%def>
6 6
7 7 <%def name="breadcrumbs()">
8 <span class="groups_breadcrumbs"> ${_('Groups')}
8 <span class="groups_breadcrumbs">
9 ${h.link_to(_(u'Home'),h.url('/'))}
9 10 %if c.group.parent_group:
10 11 &raquo; ${h.link_to(c.group.parent_group.name,h.url('repos_group_home',group_name=c.group.parent_group.group_name))}
11 12 %endif
@@ -7,7 +7,7 b''
7 7 <%def name="breadcrumbs_links()">
8 8 ${h.link_to(_(u'Home'),h.url('/'))}
9 9 &raquo;
10 ${h.link_to(c.dbrepo.just_name,h.url('summary_home',repo_name=c.repo_name))}
10 ${h.repo_link(c.dbrepo.groups_and_repo)}
11 11 &raquo;
12 12 ${_('summary')}
13 13 </%def>
General Comments 0
You need to be logged in to leave comments. Login now