Files
@ a991e5c57a8d
Branch filter:
Location: kallithea/rhodecode/templates/admin/repo_groups/repo_group_show.html - annotation
a991e5c57a8d
753 B
text/html
rhodecode.js: Get rid of some more YUI
ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 ffd45b185016 | ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
${_('%s Repository group dashboard') % c.group.group_name}
%if c.rhodecode_name:
· ${c.rhodecode_name}
%endif
</%def>
<%def name="breadcrumbs()">
<span class="groups_breadcrumbs">
${h.link_to(_(u'Home'),h.url('/'))}
%if c.group.parent_group:
» ${h.link_to(c.group.parent_group.name,h.url('repos_group_home',group_name=c.group.parent_group.group_name))}
%endif
» "${c.group.name}" ${_('with')}
</span>
</%def>
<%def name="page_nav()">
${self.menu('repositories')}
</%def>
<%def name="main()">
<%include file="/index_base.html" args="parent=self,group_name=c.group.group_name"/>
</%def>
|