Customizing Subs using Wtforms
[mediagoblin.git] / mediagoblin / templates / mediagoblin / user_pages / collection_list.html
1 {#
2 # GNU MediaGoblin -- federated, autonomous media hosting
3 # Copyright (C) 2011, 2012 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 {%- extends "mediagoblin/base.html" %}
19
20 {% block title %}
21 {%- trans username=user.username -%}
22 {{ username }}'s collections
23 {%- endtrans %} &mdash; {{ super() }}
24 {% endblock %}
25
26 {% block mediagoblin_content -%}
27 <h1>
28 {%- trans username=user.username,
29 user_url=request.urlgen(
30 'mediagoblin.user_pages.user_home',
31 user=user.username) -%}
32 <a href="{{ user_url }}">{{ username }}</a>'s collections
33 {%- endtrans %}
34 </h1>
35
36 {% if request.user %}
37 {% if request.user.has_privilege('active') %}
38 <p>
39 <a href="{{ request.urlgen('mediagoblin.submit.collection',
40 user=user.username) }}">
41 {%- trans %}Create new collection{% endtrans -%}
42 </a>
43 </p>
44 {% endif %}
45 {% endif %}
46
47 <ul>
48 {% for coll in collections %}
49 {%- set coll_url = coll.url_for_self(request.urlgen) %}
50 <li>
51 <a href="{{ coll_url }}">{{ coll.title }}</a>
52 </li>
53 {% endfor %}
54 </ul>
55
56 {% endblock %}