annotate rhodecode/templates/admin/repos/repo_add.html @ 1906:90a4066d4261 beta

marked ldap_dn in user edit form as readonly ref #292
author Marcin Kuzminski <marcin@python-works.com>
date Tue, 17 Jan 2012 20:37:32 +0200
parents f91d3f9b7230
children b4f401524060
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
20
bbaab7501c1a Added custom templates, did over check of code to make it work.
Marcin Kuzminski
parents:
diff changeset
1 ## -*- coding: utf-8 -*-
132
20680c6b0a7f fixed add repo template
Marcin Kuzminski <marcin@python-works.com>
parents: 127
diff changeset
2 <%inherit file="/base/base.html"/>
20680c6b0a7f fixed add repo template
Marcin Kuzminski <marcin@python-works.com>
parents: 127
diff changeset
3
20680c6b0a7f fixed add repo template
Marcin Kuzminski <marcin@python-works.com>
parents: 127
diff changeset
4 <%def name="title()">
619
a1ec653f5f95 #38 updated RhodeCode titles
Marcin Kuzminski <marcin@python-works.com>
parents: 562
diff changeset
5 ${_('Add repository')} - ${c.rhodecode_name}
132
20680c6b0a7f fixed add repo template
Marcin Kuzminski <marcin@python-works.com>
parents: 127
diff changeset
6 </%def>
362
558eb7c5028f version bump to 0.8
Marcin Kuzminski <marcin@python-works.com>
parents: 299
diff changeset
7
558eb7c5028f version bump to 0.8
Marcin Kuzminski <marcin@python-works.com>
parents: 299
diff changeset
8 <%def name="breadcrumbs_links()">
1888
f91d3f9b7230 White-space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 1111
diff changeset
9 ${h.link_to(_('Admin'),h.url('admin_home'))}
f91d3f9b7230 White-space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 1111
diff changeset
10 &raquo;
f91d3f9b7230 White-space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 1111
diff changeset
11 ${h.link_to(_('Repositories'),h.url('repos'))}
362
558eb7c5028f version bump to 0.8
Marcin Kuzminski <marcin@python-works.com>
parents: 299
diff changeset
12 &raquo;
558eb7c5028f version bump to 0.8
Marcin Kuzminski <marcin@python-works.com>
parents: 299
diff changeset
13 ${_('add new')}
132
20680c6b0a7f fixed add repo template
Marcin Kuzminski <marcin@python-works.com>
parents: 127
diff changeset
14 </%def>
362
558eb7c5028f version bump to 0.8
Marcin Kuzminski <marcin@python-works.com>
parents: 299
diff changeset
15
132
20680c6b0a7f fixed add repo template
Marcin Kuzminski <marcin@python-works.com>
parents: 127
diff changeset
16 <%def name="page_nav()">
182
11e8eb5a92e3 new way of menu generation for base, and all admin pages
Marcin Kuzminski <marcin@python-works.com>
parents: 174
diff changeset
17 ${self.menu('admin')}
132
20680c6b0a7f fixed add repo template
Marcin Kuzminski <marcin@python-works.com>
parents: 127
diff changeset
18 </%def>
1111
4b62d2fea08a added base for repo creation forms, both templates will share the same form.
Marcin Kuzminski <marcin@python-works.com>
parents: 888
diff changeset
19
216
c8162373f214 Cleaned the way based was used to generate submenu for admin, now it's much more clear to use submenu. Cleaned admin and added comment to middleware
Marcin Kuzminski <marcin@python-works.com>
parents: 182
diff changeset
20 <%def name="main()">
1111
4b62d2fea08a added base for repo creation forms, both templates will share the same form.
Marcin Kuzminski <marcin@python-works.com>
parents: 888
diff changeset
21 <div class="box">
4b62d2fea08a added base for repo creation forms, both templates will share the same form.
Marcin Kuzminski <marcin@python-works.com>
parents: 888
diff changeset
22 <!-- box / title -->
4b62d2fea08a added base for repo creation forms, both templates will share the same form.
Marcin Kuzminski <marcin@python-works.com>
parents: 888
diff changeset
23 <div class="title">
1888
f91d3f9b7230 White-space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 1111
diff changeset
24 ${self.breadcrumbs()}
1111
4b62d2fea08a added base for repo creation forms, both templates will share the same form.
Marcin Kuzminski <marcin@python-works.com>
parents: 888
diff changeset
25 </div>
4b62d2fea08a added base for repo creation forms, both templates will share the same form.
Marcin Kuzminski <marcin@python-works.com>
parents: 888
diff changeset
26 <%include file="repo_add_base.html"/>
1888
f91d3f9b7230 White-space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 1111
diff changeset
27 </div>
f91d3f9b7230 White-space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 1111
diff changeset
28 </%def>