Dot-Notation for MediaEntry.media_files
[mediagoblin.git] / mediagoblin / templates / mediagoblin / base.html
1 {#
2 # GNU MediaGoblin -- federated, autonomous media hosting
3 # Copyright (C) 2011 MediaGoblin contributors. See AUTHORS.
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/>.
17 -#}
18 <!doctype html>
19 <html>
20 <head>
21 <meta charset="utf-8">
22 <title>{% block title %}{{ app_config['html_title'] }}{% endblock %}</title>
23 <link rel="stylesheet" type="text/css"
24 href="{{ request.staticdirect('/css/extlib/reset.css') }}"/>
25 <link rel="stylesheet" type="text/css"
26 href="{{ request.staticdirect('/css/extlib/text.css') }}"/>
27 <link rel="stylesheet" type="text/css"
28 href="{{ request.staticdirect('/css/extlib/960_16_col.css') }}"/>
29 <link rel="stylesheet" type="text/css"
30 href="{{ request.staticdirect('/css/base.css') }}"/>
31 <link rel="stylesheet" type="text/css"
32 href="{{ request.staticdirect('/css/video-js.css') }}"/>
33 <link rel="shortcut icon"
34 href="{{ request.staticdirect('/images/goblin.ico') }}" />
35 <script type="text/javascript"
36 src="{{ request.staticdirect('/js/extlib/jquery.js') }}"></script>
37 {% block mediagoblin_head %}
38 {% endblock mediagoblin_head %}
39 </head>
40 <body>
41 {% block mediagoblin_body %}
42 <div class="mediagoblin_body">
43 {% block mediagoblin_header %}
44 <div class="container_16">
45 <div class="grid_16 mediagoblin_header">
46 {% block mediagoblin_logo %}
47 <a class="mediagoblin_logo"
48 href="{{ request.urlgen('index') }}"
49 ><img src="{{ request.staticdirect('/images/logo.png') }}"
50 alt="{% trans %}MediaGoblin logo{% endtrans %}" /></a>
51 {% endblock %}
52 {% if request.user and request.user.status == 'active' %}
53 <a class="button_action"
54 href="{{ request.urlgen('mediagoblin.submit.start') }}">
55 {% trans %}Add media{% endtrans %}
56 </a>
57 {% endif %}
58 {% block mediagoblin_header_title %}{% endblock %}
59 <div class="mediagoblin_header_right">
60 {% if request.user %}
61 {# the following link should only appear when verification is needed #}
62 {% if request.user.status == "needs_email_verification" %}
63 <a href="{{ request.urlgen('mediagoblin.user_pages.user_home',
64 user=request.user.username) }}"
65 class="button_action_highlight">
66 {% trans %}Verify your email!{% endtrans %}</a>
67 {% endif %}
68
69 <a href="{{ request.urlgen('mediagoblin.user_pages.user_home',
70 user= request.user.username) }}">
71 {{ request.user.username }}</a>
72
73 (<a href="{{ request.urlgen('mediagoblin.auth.logout') }}">{% trans %}log out{% endtrans %}</a>)
74 {% else %}
75 <a href="{{ request.urlgen('mediagoblin.auth.login') }}">
76 {% trans %}Log in{% endtrans %}</a>
77 {% endif %}
78 </div>
79 </div>
80 </div>
81 {% endblock %}
82 <div class="container_16 mediagoblin_content">
83 <div class="grid_16">
84 {% include "mediagoblin/utils/messages.html" %}
85 {% block mediagoblin_content %}
86 {% endblock mediagoblin_content %}
87 </div>
88 </div>
89 {% block mediagoblin_footer %}
90 <div class="container_16">
91 <div class="grid_16 mediagoblin_footer">
92 {% trans -%}
93 Powered by <a href="http://mediagoblin.org">MediaGoblin</a>, a <a href="http://gnu.org/">GNU</a> project
94 {%- endtrans %}
95 </div>
96 </div>
97 {% endblock %}
98 {% endblock mediagoblin_body %}
99 </div>
100 </body>
101 </html>