view rhodecode/templates/admin/repos/repo_add_create_repository.html @ 1902:2112bcbcb346 beta

added tooltips into diff icons
author Marcin Kuzminski <marcin@python-works.com>
date Sat, 14 Jan 2012 17:10:51 +0200
parents f91d3f9b7230
children b4f401524060
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>