moved forgot pw views to basic_auth plugin
[mediagoblin.git] / mediagoblin / templates / mediagoblin / base.html
CommitLineData
76c9ea6b
WKG
1{#
2# GNU MediaGoblin -- federated, autonomous media hosting
cf29e8a8 3# Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS.
76c9ea6b
WKG
4#
5# This program is free software: you can redistribute it and/or modify
6# it under the terms of the GNU Affero General Public License as published by
7# the Free Software Foundation, either version 3 of the License, or
8# (at your option) any later version.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU Affero General Public License for more details.
14#
15# You should have received a copy of the GNU Affero General Public License
16# along with this program. If not, see <http://www.gnu.org/licenses/>.
9a5b2da5
CAW
17-#}
18<!doctype html>
a80ebf3b
AL
19<html
20{% block mediagoblin_html_tag %}
21{% endblock mediagoblin_html_tag %}
22>
a0598d5c 23 <head>
5fa35884 24 <meta charset="utf-8">
e58f2599 25 <meta name="viewport" content="width=device-width, initial-scale=1.0">
78801685 26 <title>{% block title %}{{ app_config['html_title'] }}{% endblock %}</title>
1344821d 27 <link rel="stylesheet" type="text/css"
1dc7f28d 28 href="{{ request.staticdirect('/css/extlib/reset.css') }}"/>
8ac897c3
CAW
29 <link rel="stylesheet" type="text/css"
30 href="{{ request.staticdirect('/css/base.css') }}"/>
7a8ad818
CAW
31 <link rel="shortcut icon"
32 href="{{ request.staticdirect('/images/goblin.ico') }}" />
742bfa7a
E
33 <script type="text/javascript"
34 src="{{ request.staticdirect('/js/extlib/jquery.js') }}"></script>
3c912132
CAW
35 <script type="text/javascript"
36 src="{{ request.staticdirect('/js/header_dropdown.js') }}"></script>
37
f6d1d28d 38 {# For clarification, the difference between the extra_head.html template
cac17c15 39 # and the head template hook is that the former should be used by
f6d1d28d
CAW
40 # themes and the latter should be used by plugins.
41 # The reason is that only one thing can override extra_head.html...
42 # but multiple plugins can hook into the template hook.
43 #}
667d1fc8 44 {% include "mediagoblin/extra_head.html" %}
cac17c15 45 {% template_hook("head") %}
0416b866 46
00c39256
BK
47 {% block mediagoblin_head %}
48 {% endblock mediagoblin_head %}
a0598d5c 49 </head>
a0598d5c 50 <body>
8ca51d32 51 {% include 'mediagoblin/bits/body_start.html' %}
a0598d5c
CAW
52 {% block mediagoblin_body %}
53 {% block mediagoblin_header %}
afcb0855 54 <header>
17dcc3ae 55 {%- include "mediagoblin/bits/logo.html" -%}
afcb0855
JS
56 {% block mediagoblin_header_title %}{% endblock %}
57 <div class="header_right">
155438cd 58 {%- if request.user %}
29497982 59 {% if request.user and request.user.status == 'active' %}
2369feb5
JS
60 <div class="button_action header_dropdown_down">&#9660;</div>
61 <div class="button_action header_dropdown_up">&#9650;</div>
29497982 62 {% elif request.user and request.user.status == "needs_email_verification" %}
afcb0855 63 {# the following link should only appear when verification is needed #}
7b6836a3 64 <a href="{{ request.urlgen('mediagoblin.user_pages.user_home',
29497982 65 user=request.user.username) }}"
afcb0855 66 class="button_action_highlight">
29497982 67 {% trans %}Verify your email!{% endtrans %}</a>
10d24197 68 or <a href="{{ request.urlgen('mediagoblin.auth.logout') }}">{% trans %}log out{% endtrans %}</a>
681e1371 69 {% endif %}
155438cd 70 {%- else %}
d3c6e2a0
SS
71 <a href="{{ request.urlgen('mediagoblin.auth.login') }}?next={{
72 request.base_url|urlencode }}">
155438cd
E
73 {%- trans %}Log in{% endtrans -%}
74 </a>
75 {%- endif %}
afcb0855 76 </div>
d297d8e8 77 <div class="clear"></div>
a7d079ac 78 {% if request.user and request.user.status == 'active' %}
2369feb5 79 <div class="header_dropdown">
d1d53560
CAW
80 <p>
81 <span class="dropdown_title">
82 {% trans user_url=request.urlgen('mediagoblin.user_pages.user_home',
83 user=request.user.username),
84 user_name=request.user.username -%}
85 <a href="{{ user_url }}">{{ user_name }}</a>'s account
86 {%- endtrans %}
a5b9a066
JS
87 </span>
88 &middot;
89 <a href="{{ request.urlgen('mediagoblin.edit.account') }}">{%- trans %}Change account settings{% endtrans -%}</a>
90 &middot;
91 <a href="{{ request.urlgen('mediagoblin.user_pages.processing_panel',
fe253e31 92 user=request.user.username) }}">
a5b9a066
JS
93 {%- trans %}Media processing panel{% endtrans -%}
94 </a>
95 &middot;
96 <a href="{{ request.urlgen('mediagoblin.auth.logout') }}">{% trans %}Log out{% endtrans %}</a>
d1d53560 97 </p>
a5b9a066 98 <a class="button_action" href="{{ request.urlgen('mediagoblin.submit.start') }}">
5a42915b 99 {%- trans %}Add media{% endtrans -%}
fe253e31 100 </a>
a5b9a066 101 <a class="button_action" href="{{ request.urlgen('mediagoblin.submit.collection') }}">
5a42915b 102 {%- trans %}Create new collection{% endtrans -%}
fe253e31 103 </a>
5a42915b 104 {% if request.user.is_admin %}
a5b9a066
JS
105 <p>
106 <span class="dropdown_title">Admin powers:</span>
107 <a href="{{ request.urlgen('mediagoblin.admin.panel') }}">
108 {%- trans %}Media processing panel{% endtrans -%}
109 </a>
110 </p>
5a42915b 111 {% endif %}
5a42915b
JS
112 </div>
113 {% endif %}
afcb0855 114 </header>
a0598d5c 115 {% endblock %}
155438cd 116 <div class="container">
8ca51d32 117 {% include 'mediagoblin/bits/above_content.html' %}
155438cd 118 <div class="mediagoblin_content">
741d5a37 119 {% include "mediagoblin/utils/messages.html" %}
f7bcfaff
JS
120 {% block mediagoblin_content %}
121 {% endblock mediagoblin_content %}
155438cd
E
122 </div>
123 {%- block mediagoblin_footer %}
7945cd21 124 <footer>
416b439f 125 {% trans -%}
155438cd 126 Powered by <a href="http://mediagoblin.org/" title='Version {{ version }}'>MediaGoblin</a>, a <a href="http://gnu.org/">GNU</a> project.
416b439f 127 {%- endtrans %}
ff6933fa 128 {% trans source_link=app_config['source_link'] -%}
416b439f 129 Released under the <a href="http://www.fsf.org/licensing/licenses/agpl-3.0.html">AGPL</a>. <a href="{{ source_link }}">Source code</a> available.
58b79b15 130 {%- endtrans %}
7945cd21 131 </footer>
155438cd
E
132 {%- endblock mediagoblin_footer %}
133 </div>
134 {%- endblock mediagoblin_body %}
8ca51d32 135 {% include 'mediagoblin/bits/body_end.html' %}
a0598d5c
CAW
136 </body>
137</html>