Files @ f4fed0b32103
Branch filter:

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

Marcin Kuzminski
Rewrote git middleware with the same pattern as recent fix for #176
- additionally fixed dulwich server bug, that used old deprecated method. This fix caused huge improvement of speed for fetching git repos
- moved simplehg and simplegit middleware into begining of pylons callstack. This low level middleware
don't need to run any of the middlewares except each other.
## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
    ${_('Repository group')} - ${c.rhodecode_name}
</%def>

<%def name="breadcrumbs()">
    ${_('Groups')} 
    %if c.group.parent_group:
        &raquo; ${h.link_to(c.group.parent_group.group_name,
        h.url('repos_group',id=c.group.parent_group.group_id))}
    %endif
    &raquo; "${c.group.group_name}" ${_('with')} 
</%def>

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