Changing translations to say "amount of time ago", basically
[mediagoblin.git] / mediagoblin / templates / mediagoblin / user_pages / collection_list.html
CommitLineData
b0cc1ade
SZ
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
b0cc1ade
SZ
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.status == 'active' %}
38 <p>
39 <a href="{{ request.urlgen('mediagoblin.submit.collection',
40 user=user.username) }}">
41 {%- trans %}Create new collection{% endtrans -%}
42 </p>
43 {% endif %}
44 {% endif %}
45
46 <ul>
47 {% for coll in collections %}
48 {% set coll_url = request.urlgen(
49 'mediagoblin.user_pages.user_collection',
50 user=user.username,
51 collection=coll.slug) %}
52 <li><a href="{{ coll_url }}">{{ coll.title }}</li>
53 {% endfor %}
54 </ul>
55
56{% endblock %}