##// END OF EJS Templates
make unread also a link, constantly was clicking that...
make unread also a link, constantly was clicking that - make the links and hover same as other links in that menu

File last commit:

r3197:b4f40152 beta
r3297:a66198aa beta
Show More
repo_add_create_repository.html
24 lines | 489 B | text/html | HtmlLexer
/ rhodecode / templates / admin / repos / repo_add_create_repository.html
renamed project to rhodecode
r547 ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
#38 updated RhodeCode titles
r619 ${_('Add repository')} - ${c.rhodecode_name}
renamed project to rhodecode
r547 </%def>
<%def name="breadcrumbs_links()">
Mads Kiilerich
html: don't use tabs
r3197 ${_('add new repository')}
renamed project to rhodecode
r547 </%def>
<%def name="page_nav()">
Mads Kiilerich
html: don't use tabs
r3197 ${self.menu('admin')}
renamed project to rhodecode
r547 </%def>
added base for repo creation forms, both templates will share the same form.
r1111
renamed project to rhodecode
r547 <%def name="main()">
added base for repo creation forms, both templates will share the same form.
r1111 <div class="box">
<!-- box / title -->
<div class="title">
White-space cleanup
r1888 ${self.breadcrumbs()}
renamed project to rhodecode
r547 </div>
added base for repo creation forms, both templates will share the same form.
r1111 <%include file="repo_add_base.html"/>
White-space cleanup
r1888 </div>
</%def>