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