Merge branch 'stable'
[mediagoblin.git] / mediagoblin / templates / mediagoblin / user_pages / collection.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 {% from "mediagoblin/utils/collection_gallery.html" import collection_gallery %}
21
22 {% block mediagoblin_head %}
23 <link rel="alternate" type="application/atom+xml"
24 href="{{ request.urlgen(
25 'mediagoblin.user_pages.atom_feed',
26 user=user.username) }}">
27 {% endblock mediagoblin_head %}
28
29 {% block title %}
30 {%- trans username=user.username,
31 collection_title=collection.title
32 -%}
33 {{ collection_title }} ({{ username }}'s collection)
34 {%- endtrans %} &mdash; {{ super() }}
35 {% endblock %}
36
37 {% block mediagoblin_content -%}
38 <h1>
39 {%- trans username=user.username,
40 user_url=request.urlgen(
41 'mediagoblin.user_pages.user_home',
42 user=user.username),
43 collection_title=collection.title -%}
44 {{ collection_title }} by <a href="{{ user_url }}">{{ username }}</a>
45 {%- endtrans %}
46 </h1>
47 {% if request.user and (collection.actor == request.user.id or
48 request.user.has_privilege('admin')) %}
49 {% set edit_url = request.urlgen('mediagoblin.edit.edit_collection',
50 user=collection.get_actor.username,
51 collection=collection.slug) %}
52 <a class="button_action" href="{{ edit_url }}">{% trans %}Edit{% endtrans %}</a>
53 {% set delete_url = request.urlgen('mediagoblin.user_pages.collection_confirm_delete',
54 user=collection.get_actor.username,
55 collection=collection.slug) %}
56 <a class="button_action" href="{{ delete_url }}">{% trans %}Delete{% endtrans %}</a>
57 {% endif %}
58
59 <p>
60 {% autoescape False %}
61 {{ collection.description_html }}
62 {% endautoescape %}
63 </p>
64
65 {{ collection_gallery(request, collection_items, pagination) }}
66
67 {% set feed_url = request.urlgen('mediagoblin.user_pages.collection_atom_feed',
68 user=user.username,
69 collection=collection.slug ) %}
70 {% include "mediagoblin/utils/feed_link.html" %}
71
72 {% endblock %}