##// END OF EJS Templates
API added checks for a valid repository on pull command...
API added checks for a valid repository on pull command Added pre-check if repository have a remote_uri defines before pulling bugfix with no default arguments on api function added traceback when unhandled exception occurs on API

File last commit:

r1403:fc286aed beta
r1508:4aba7be3 beta
Show More
repos_groups.html
21 lines | 570 B | text/html | HtmlLexer
## -*- 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>