view rhodecode/templates/admin/repos/repo_add_create_repository.html @ 3288:6cdf2cd9d9d8 beta

repo edit: it is a repo thing more than an admin thing - show it that way in ui and url
author Mads Kiilerich <madski@unity3d.com>
date Wed, 30 Jan 2013 21:13:47 +0100
parents b4f401524060
children
line wrap: on
line source

## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>

<%def name="title()">
    ${_('Add repository')} - ${c.rhodecode_name}
</%def>

<%def name="breadcrumbs_links()">
    ${_('add new repository')}
</%def>

<%def name="page_nav()">
    ${self.menu('admin')}
</%def>

<%def name="main()">
    <div class="box">
        <!-- box / title -->
        <div class="title">
            ${self.breadcrumbs()}
        </div>
        <%include file="repo_add_base.html"/>
    </div>
</%def>