Merge branch 'bug/13917' into release/0.10.2
[ganeti_webmgr.git] / ganeti_web / templates / 500.html
blob3f4c60195c719d235dad67c1f5988fc95f167e6b
1 {% extends "no_menu_base.html" %}
3 {% block head %}
5 <!-- ===========================================================================
6 500 error page.
8 The background behind this page is that the manatee is the unofficial mascot
9 of the OSU Open Source Lab. Matt Inman, author of the OatMeal has kindly
10 allowed us to us his artwork dipicting something going horribly wrong for a
11 pair of manatees. Feel free to edit this page, but please do not remove this
12 message unless you remove the artwork.
13 ============================================================================ -->
15 <style>
16 h1{margin-top:10px;}
18 #content {
19 text-align:center;
20 padding-bottom:30px;
23 #content img {margin:30px; border:0;}
25 .options {
26 background:#eee;
27 border: 1px solid #dddddd;
28 margin: 0 auto 0 auto;
29 padding: 25px;
30 text-align:left;
31 width:37em;
32 -moz-border-radius:5px;
33 -webkit-border-radius:5px;
36 .options li {
37 list-style:square;
38 margin:3px 0 0 10px;
42 </style>
43 {% endblock %}
45 {% block header_title %}{%endblock%}
47 {% block content %}
48 <h1>Something Has Gone Terribly Wrong</h1>
49 <a href="http://theoatmeal.com/comics/polar_bear">
50 <img src="{{STATIC_URL}}/images/polar_bear_destroys_manatees.png" title="Polar bears hilariously ripping manatees into little bits."/>
51 </a>
52 <ul class="options">
53 <li><a href="http://code.osuosl.org/projects/ganeti-webmgr/issues">Submit a bug.</a></li>
54 <li>Return to <a href="/">Ganeti Web Manager.</a></li>
55 <li>Or read cartoons from <a href="http://theoatmeal.com">The Oatmeal</a>, and forget this ever happened.</li>
56 </ul>
57 {% endblock %}