##// END OF EJS Templates
header: don't use fixed position...
header: don't use fixed position A fixed div at the top prevents anchors and pageup/pagedown from working correctly ... and it is not like the top menu items are used all the time - next/previous page links would be more relevant to show in a fixed position. made the upper menu as a dropdown to old fixed mode by clicking upper semi transparent bar

File last commit:

r3294:d204788c beta
r3299:d561eb37 beta
Show More
repos_groups.html
22 lines | 650 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()">
${_('Repository group')} - ${c.rhodecode_name}
</%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
show group: this is more of a 'Repositories' thing than an 'Admin' thing
r3294 ${self.menu('home')}
Added repo group page showing what reposiories are inside a group
r1193 </%def>
<%def name="main()">
#402 removed group prefix from repository name when listing repositories inside a group
r2133 <%include file="/index_base.html" args="parent=self,short_repo_names=True"/>
White-space cleanup
r1888 </%def>