##// END OF EJS Templates
Second step in two-part process to rename directories....
Second step in two-part process to rename directories. This is the actual directory rename.

File last commit:

r4187:d1addaf7 kallithea-2.2.5-r...
r4187:d1addaf7 kallithea-2.2.5-r...
Show More
repo_group_show.html
26 lines | 753 B | text/html | HtmlLexer
## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
${_('%s Repository group dashboard') % c.group.group_name}
%if c.rhodecode_name:
&middot; ${c.rhodecode_name}
%endif
</%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('repositories')}
</%def>
<%def name="main()">
<%include file="/index_base.html" args="parent=self,group_name=c.group.group_name"/>
</%def>