Merge branch 'develop' into feature/search_autocomplete_haste
[ganeti_webmgr.git] / ganeti / templates / about.html
blob62fecaea6e54946bb53c323f9bb260fc1c9dde1b
1 {% extends "menu_base.html" %}
2 {% load webmgr_tags %}
3 {% load i18n %}
4 {% block title %}{%trans "About" %}{% endblock %}
5 {% block head %}
6 <style type="text/css">
7 .show_bullets li{
8 margin-left:40px;
9 list-style-type:disc;
12 h3 {margin-top:30px;}
13 h4 {margin-top:10px;}
14 </style>
15 {% endblock %}
16 {% block content %}
17 <h1>{% trans "About" %}</h1>
18 <p>Ganeti Web Manager is a project by the
19 <a href="http://osuosl.org">Oregon State University Open Source Lab</a>.
20 </p>
21 <p>If you would like more information, support, or are interested in getting
22 involved, check out the
23 <a href="http://code.osuosl.org/projects/ganeti-webmgr">project page</a>.
25 </p>
26 <div id="version">
27 <h4>{% trans "Ganeti Version: " %}{{ version }}</h4>
28 </div>
30 <div id="contributors" class="show_bullets">
31 <h3>{% trans "Core Contributors" %}</h3>
32 <p>For a complete list of people who have contributed code to the Ganeti Web Manager project, see the <a href=http://git.osuosl.org/?p=gitolite/ganeti/ganeti_webmgr.git;a=blob_plain;f=AUTHORS>AUTHORS</a> file. </p>
33 <p><ul>
34 <li>Peter Krenesky (kreneskyp)</li>
35 <li>Trevor Bramwell (bramwelt)</li>
36 <li>Rob McGuire-Dale (robatron)</li>
37 <li>Corbin Simpson (MostAwesomeDude)</li>
38 <li>Piotr Banaszkiewicz (pbnan)</li>
39 </ul></p>
40 </div>
42 <div id="addons" class="show_bullets">
43 <h3>{% trans "Add-ons" %}</h3>
44 <p>Add-ons currently used by Ganeti Web Manager:</p>
45 <p><ul >
46 <li><a href="https://github.com/kanaka/noVNC">noVNC by Joel Martin</a></li>
47 <li><a href="https://github.com/toastdriven/django-haystack/">Haystack Search by Daniel Lindsley</a>, using <a href="https://bitbucket.org/mchaput/whoosh/wiki/home/">Whoosh by Matt Chaput</a></li>
48 <li><a href="http://code.osuosl.org/projects/twisted-vncauthproxy">Twisted VNCAuthProxy</a></li>
49 <li><a href="http://code.osuosl.org/projects/object-permissions">Django Object Permissions </a></li>
50 <li><a href="http://code.osuosl.org/projects/django-object-log">Django Object Log</a></li>
51 </ul>
52 </p>
54 </div>
55 <div id="donation">
56 <h3>{% trans "Donate to Ganeti Web Manager" %}</h3>
57 <p>Donations that support the Ganeti Web Manager project can be made <a href="http://osuosl.org/contribute">here</a>.</p>
58 </div>
60 {% endblock %}