Files @ d561eb3787f5
Branch filter:

Location: kallithea/rhodecode/templates/admin/repos_groups/repos_groups.html

Mads Kiilerich
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
## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
    ${_('Repository group')} - ${c.rhodecode_name}
</%def>

<%def name="breadcrumbs()">
    <span class="groups_breadcrumbs">
    ${h.link_to(_(u'Home'),h.url('/'))}
    %if c.group.parent_group:
        &raquo; ${h.link_to(c.group.parent_group.name,h.url('repos_group_home',group_name=c.group.parent_group.group_name))}
    %endif
    &raquo; "${c.group.name}" ${_('with')}
    </span>
</%def>

<%def name="page_nav()">
    ${self.menu('home')}
</%def>
<%def name="main()">
        <%include file="/index_base.html" args="parent=self,short_repo_names=True"/>
</%def>