Mark two strings for translation
[mediagoblin.git] / mediagoblin / templates / mediagoblin / user_pages / media.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 {% extends "mediagoblin/base.html" %}
19
20 {% import "/mediagoblin/utils/wtforms.html" as wtforms_util %}
21 {% from "mediagoblin/utils/pagination.html" import render_pagination %}
22
23 {% block title %}{{ media.title }} &mdash; {{ super() }}{% endblock %}
24
25 {% block mediagoblin_content %}
26 {% if media %}
27 <div class="grid_11 alpha">
28 <div class="media_image_container">
29 {% block mediagoblin_media %}
30 {% set display_media = request.app.public_store.file_url(
31 media.get_display_media(media.media_files)) %}
32
33 {# if there's a medium file size, that means the medium size
34 # isn't the original... so link to the original!
35 #}
36 {% if media['media_files'].has_key('medium') %}
37 <a href="{{ request.app.public_store.file_url(
38 media['media_files']['original']) }}">
39 <img class="media_image"
40 src="{{ display_media }}"
41 alt="Image for {{ media.title }}" />
42 </a>
43 {% else %}
44 <img class="media_image"
45 src="{{ display_media }}"
46 alt="Image for {{ media.title }}" />
47 {% endif %}
48 {% endblock %}
49 </div>
50
51 <h2 class="media_title">
52 {{ media.title }}
53 </h2>
54 {% autoescape False %}
55 <p>{{ media.description_html }}</p>
56 {% endautoescape %}
57 <p class="media_uploader">
58 {% trans date=media.created.strftime("%Y-%m-%d"),
59 user_url=request.urlgen(
60 'mediagoblin.user_pages.user_home',
61 user=media.get_uploader().username),
62 username=media.get_uploader().username -%}
63 By <a href="{{ user_url }}">{{ username }}</a> on {{ date }}
64 {%- endtrans %}
65 </p>
66 <h3></h3>
67 {% if request.user and comments.count() %}
68 <p><a href="#comment_form">{% trans %}Post a comment{% endtrans %}</a></p>
69 {% endif %}
70 {% if comments %}
71 {% for comment in comments %}
72 {% set comment_author = comment.author() %}
73 {% if pagination.active_id == comment._id %}
74 <div class="comment_wrapper comment_active" id="comment-{{ comment._id }}">
75 <a name="comment" id="comment"></a>
76 {% else %}
77 <div class="comment_wrapper" id="comment-{{ comment._id }}">
78 {% endif %}
79
80 <div class="comment_content">{% autoescape False %}{{ comment.content_html }}
81 {% endautoescape %}
82 <img src="{{ request.staticdirect('/images/icon_comment.png') }}" />
83 <a href="{{ request.urlgen('mediagoblin.user_pages.user_home',
84 user = comment_author['username']) }}">
85 {{ comment_author['username'] }}</a>
86 {% trans %}at{% endtrans %}
87 <a href="{{ request.urlgen('mediagoblin.user_pages.media_home.view_comment',
88 comment = comment._id,
89 user = media.get_uploader().username,
90 media = media._id) }}#comment">
91 {{ comment.created.strftime("%I:%M%p %Y-%m-%d") }}
92 </a>
93 </div>
94 </div>
95 {% endfor %}
96
97 {% if request.user %}
98 <form action="{{ request.urlgen('mediagoblin.user_pages.media_post_comment',
99 user= media.get_uploader().username,
100 media=media._id) }}" method="POST">
101 {{ wtforms_util.render_divs(comment_form) }}
102 <div class="form_submit_buttons">
103 <input type="submit" value="{% trans %}Post comment!{% endtrans %}" class="button_form" />
104 {{ csrf_token }}
105 </div>
106 </form>
107 {% endif %}
108
109 {{ render_pagination(request, pagination,
110 request.urlgen('mediagoblin.user_pages.media_home',
111 user = media.get_uploader().username,
112 media = media._id)) }}
113 </div>
114 {% endif %}
115
116 <div class="grid_5 omega">
117 {% include "mediagoblin/utils/prev_next.html" %}
118
119 {% if media['uploader'] == request.user._id or
120 request.user['is_admin'] %}
121 <p>
122 {% set edit_url = request.urlgen('mediagoblin.edit.edit_media',
123 user= media.get_uploader().username,
124 media= media._id) %}
125 <a href="{{ edit_url }}">{% trans %}Edit{% endtrans %}</a>
126 </p>
127 <p>
128 {% set delete_url = request.urlgen('mediagoblin.user_pages.media_confirm_delete',
129 user= media.get_uploader().username,
130 media= media._id) %}
131 <a href="{{ delete_url }}">{% trans %}Delete{% endtrans %}</a>
132 </p>
133 {% endif %}
134
135 {% if media.attachment_files|count %}
136 <h3>Attachments</h3>
137 <ul>
138 {% for attachment in media.attachment_files %}
139 <li>
140 <a href="{{ request.app.public_store.file_url(attachment.filepath) }}">
141 {{ attachment.name }}
142 </a>
143 </li>
144 {% endfor %}
145 </ul>
146 {% endif %}
147
148 {% if app_config['allow_attachments']
149 and (media['uploader'] == request.user._id
150 or request.user['is_admin']) %}
151 <p>
152 <a href="{{ request.urlgen('mediagoblin.edit.attachments',
153 user=media.get_uploader().username,
154 media=media._id) }}">Add attachment</a>
155 </p>
156 {% endif %}
157
158 {% if media.tags %}
159 {% include "mediagoblin/utils/tags.html" %}
160 {% endif %}
161 </div>
162 {% else %}
163 <p>{% trans %}Sorry, no such media found.{% endtrans %}<p/>
164 {% endif %}
165 {% endblock %}