Changeset - 93a337bf46fe
[Not reviewed]
default
0 1 0
Mads Kiilerich - 9 years ago 2016-11-10 16:10:41
madski@unity3d.com
repository groups: show breadcrumb
1 file changed with 10 insertions and 0 deletions:
0 comments (0 inline, 0 general)
kallithea/templates/index_base.html
Show inline comments
 
<%page args="parent,group_name=''" />
 
    <div class="panel panel-primary">
 
        <!-- box / title -->
 
        <div class="panel-heading clearfix">
 
            <div class="breadcrumbs">
 
                %if c.group is not None:
 
                    %for group in c.group.parents:
 
                        ${h.link_to(group.name, url('repos_group_home', group_name=group.group_name))}
 
                        &raquo;
 
                    %endfor
 
                    ${c.group.group_name}
 
                %endif
 
            </div>
 

	
 
            %if c.authuser.username != 'default':
 
              <ul class="links">
 
                <li>
 
                <%
 
                    gr_name = c.group.group_name if c.group else None
 
                    # create repositories with write permission on group is set to true
0 comments (0 inline, 0 general)