##// END OF EJS Templates
changelog / compare: adjust titles...
changelog / compare: adjust titles Clarify what shows changesets and what more see changesets as revisions that specify snapshots that are compared.

File last commit:

r3582:1f334a68 beta
r3592:549c73bf beta
Show More
repos_groups.html
22 lines | 657 B | text/html | HtmlLexer
## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
${_('Repository group')} &middot; ${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>