##// END OF EJS Templates
Add bookmarks property to git branch, it makes it consistent with other property...
Add bookmarks property to git branch, it makes it consistent with other property named closed branches. Makes git and hg API consistent

File last commit:

r3999:e1ecc862 default
r4088:7c73f186 default
Show More
repos_groups.html
23 lines | 697 B | text/html | HtmlLexer
Added repo group page showing what reposiories are inside a group
r1193 ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
fixes #807: Remove generic HTML title for repository groups
r3633 ${_('%s Group Dashboard') % c.group.group_name} &middot; ${c.rhodecode_name}
Added repo group page showing what reposiories are inside a group
r1193 </%def>
fixes #209, repos groups and index page now share same common page.
r1403 <%def name="breadcrumbs()">
White space cleanup
r2815 <span class="groups_breadcrumbs">
#551 show breadcrumbs in summary view for repositories inside a group
r2811 ${h.link_to(_(u'Home'),h.url('/'))}
#47 implemented basic gui for browsing repo groups
r1343 %if c.group.parent_group:
fixes small css issues with chrome
r1624 &raquo; ${h.link_to(c.group.parent_group.name,h.url('repos_group_home',group_name=c.group.parent_group.group_name))}
#47 implemented basic gui for browsing repo groups
r1343 %endif
implements #226 repo groups available by path...
r1538 &raquo; "${c.group.name}" ${_('with')}
White-space cleanup
r1888 </span>
Added repo group page showing what reposiories are inside a group
r1193 </%def>
fixes #209, repos groups and index page now share same common page.
r1403
Added repo group page showing what reposiories are inside a group
r1193 <%def name="page_nav()">
Mads Kiilerich
use valid options for the top menu: repositories, journal, search and admin
r3603 ${self.menu('repositories')}
Added repo group page showing what reposiories are inside a group
r1193 </%def>
Mads Kiilerich
use valid options for the top menu: repositories, journal, search and admin
r3603
Added repo group page showing what reposiories are inside a group
r1193 <%def name="main()">
Mads Kiilerich
group index: quick search should not search the common part of repo names
r3999 <%include file="/index_base.html" args="parent=self,group_name=c.group.group_name"/>
White-space cleanup
r1888 </%def>