##// END OF EJS Templates
fixed add repo template
marcink -
r132:20680c6b default
parent child Browse files
Show More
@@ -1,45 +1,42 b''
1 1 ## -*- coding: utf-8 -*-
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml">
4 <head>
5 <link rel="icon" href="/images/hgicon.png" type="image/png" />
6 <meta name="robots" content="index, nofollow"/>
7 <link rel="stylesheet" href="/images/style-monoblue.css" type="text/css" />
8 <title> Mercurial repositories add</title>
9 </head>
2 <%inherit file="/base/base.html"/>
3
4 <%def name="title()">
5 ${_('Add new repository')}
6 </%def>
10 7
11 <body>
12 <div id="container">
13 <div class="page-header">
14 <h1><a href="/">Home</a> / Admin</h1>
15 <ul class="page-nav">
16 </ul>
17 </div>
18 <table cellspacing="0">
8 <%def name="breadcrumbs()">
9 ${h.link_to(u'Home',h.url('/'))}
10 /
11 ${h.link_to(u'Admin',h.url('admin_home'))}
12 </%def>
13
14 <%def name="page_nav()">
15 <li>${h.link_to(u'Home',h.url('/'))}</li>
16 <li class="current">${_('Admin')}</li>
17 </%def>
18
19 <%def name="main()">
20 <table cellspacing="0">
19 21 <tr>
20 22 <td><h1>${c.msg}</h1></td>
21 23 </tr>
22 24 <tr>
23 25 <td><h2>${c.new_repo}</h2></td>
24 26 </tr>
25 </table>
26 <div class="page-footer">
27 Mercurial Repository: admin
28 </div>
27 </table>
28 </%def>
29
30
31
32
33
29 34
30 <div id="powered-by">
31 <p>
32 <a href="http://mercurial.selenic.com/" title="Mercurial">
33 <img src="/images/hglogo.png" width="75" height="90" border=0 alt="mercurial"/></a>
34 </p>
35 </div>
35
36
37
36 38
37 <div id="corner-top-left"></div>
38 <div id="corner-top-right"></div>
39 <div id="corner-bottom-left"></div>
40 <div id="corner-bottom-right"></div>
39
41 40
42 </div>
43 </body>
44 </html>
45 No newline at end of file
41
42
General Comments 0
You need to be logged in to leave comments. Login now