comparison rhodecode/templates/errors/error_document.html @ 2031:82a88013a3fd

merge 1.3 into stable
author Marcin Kuzminski <marcin@python-works.com>
date Sun, 26 Feb 2012 17:25:09 +0200
parents bf263968da47 f91d3f9b7230
children 63e58ef80ef1
comparison
equal deleted inserted replaced
2005:ab0e122b38a7 2031:82a88013a3fd
4 <head> 4 <head>
5 <title>Error - ${c.error_message}</title> 5 <title>Error - ${c.error_message}</title>
6 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> 6 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
7 %if c.redirect_time: 7 %if c.redirect_time:
8 <meta http-equiv="refresh" content="${c.redirect_time}; url=${c.url_redirect}"/> 8 <meta http-equiv="refresh" content="${c.redirect_time}; url=${c.url_redirect}"/>
9 %endif 9 %endif
10 <link rel="icon" href="${h.url("/images/hgicon.png")}" type="image/png" /> 10 <link rel="icon" href="${h.url("/images/hgicon.png")}" type="image/png" />
11 <meta name="robots" content="index, nofollow"/> 11 <meta name="robots" content="index, nofollow"/>
12 12
13 <!-- stylesheets --> 13 <!-- stylesheets -->
14 <link rel="stylesheet" type="text/css" href="${h.url('/css/style.css')}" media="screen" /> 14 <link rel="stylesheet" type="text/css" href="${h.url('/css/style.css')}" media="screen" />
15 <style type="text/css"> 15 <style type="text/css">
16 #main_div{ 16 #main_div{
17 border: 0px solid #000; 17 border: 0px solid #000;
26 color:#003367; 26 color:#003367;
27 font-size: 1.6em; 27 font-size: 1.6em;
28 margin:10px; 28 margin:10px;
29 } 29 }
30 </style> 30 </style>
31 31
32 </head> 32 </head>
33 <body> 33 <body>
34 34
35 <div id="login"> 35 <div id="login">
36 <div class="table"> 36 <div class="table">
37 <div id="main_div"> 37 <div id="main_div">
38 <div style="font-size:2.0em;margin: 10px">${c.rhodecode_name}</div> 38 <div style="font-size:2.0em;margin: 10px">${c.rhodecode_name}</div>
39 <h1 class="error_message">${c.error_message}</h1> 39 <h1 class="error_message">${c.error_message}</h1>
40 40
41 <p>${c.error_explanation}</p> 41 <p>${c.error_explanation}</p>
42 42
43 %if c.redirect_time: 43 %if c.redirect_time:
44 <p>${_('You will be redirected to %s in %s seconds') % (c.redirect_module,c.redirect_time)}</p> 44 <p>${_('You will be redirected to %s in %s seconds') % (c.redirect_module,c.redirect_time)}</p>
45 %endif 45 %endif
46 46
47 </div> 47 </div>
48 </div> 48 </div>
49 <!-- end login --> 49 <!-- end login -->
50 </div> 50 </div>
51 </body> 51 </body>
52 52
53 </html> 53 </html>
54