Committing extracted and compiled translations
[mediagoblin.git] / mediagoblin / templates / mediagoblin / user_pages / media.html
CommitLineData
9a16e16f
SS
1{#
2# GNU MediaGoblin -- federated, autonomous media hosting
cf29e8a8 3# Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS.
9a16e16f
SS
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" %}
aa7d1a2f
JW
19
20{% import "/mediagoblin/utils/wtforms.html" as wtforms_util %}
5949be9a 21{% from "mediagoblin/utils/pagination.html" import render_pagination %}
aa7d1a2f 22
688f56c2
CAW
23{% block title %}{{ media.title }} &mdash; {{ super() }}{% endblock %}
24
75a12d63 25{% block mediagoblin_head %}
e8e444a8
JW
26<!--[if lte IE 8]><link rel="stylesheet"
27 href="{{ request.staticdirect('/extlib/leaflet/leaflet.ie.css') }}" /><![endif]-->
ada0642e
JS
28 <script type="text/javascript"
29 src="{{ request.staticdirect('/js/comment_show.js') }}"></script>
64327824
JS
30 <script type="text/javascript"
31 src="{{ request.staticdirect('/js/keyboard_navigation.js') }}"></script>
cd1b836e
JW
32
33 {% if app_config['geolocation_map_visible'] %}
34 <link rel="stylesheet"
35 href="{{ request.staticdirect('/extlib/leaflet/leaflet.css') }}" />
36
37 <script type="text/javascript"
38 src="{{ request.staticdirect('/extlib/leaflet/leaflet.js') }}"></script>
39 <script type="text/javascript"
40 src="{{ request.staticdirect('/js/geolocation-map.js') }}"></script>
41 {% endif %}
75a12d63
JS
42{% endblock mediagoblin_head %}
43
9a16e16f 44{% block mediagoblin_content %}
0dedf3f2
E
45 <p class="context">
46 {%- trans user_url=request.urlgen(
ee9a0e3c
JS
47 'mediagoblin.user_pages.user_home',
48 user=media.get_uploader.username),
49 username=media.get_uploader.username -%}
0dedf3f2
E
50 ❖ Browsing media by <a href="{{user_url}}">{{username}}</a>
51 {%- endtrans -%}
52 </p>
ee9a0e3c 53 {% include "mediagoblin/utils/prev_next.html" %}
141f14e2 54 <div class="media_pane">
38816c66
CAW
55 <div class="media_image_container">
56 {% block mediagoblin_media %}
57 {% set display_media = request.app.public_store.file_url(
58 media.get_display_media(media.media_files)) %}
59 {# if there's a medium file size, that means the medium size
60 # isn't the original... so link to the original!
61 #}
62 {% if media.media_files.has_key('medium') %}
63 <a href="{{ request.app.public_store.file_url(
64 media.media_files['original']) }}">
65 <img class="media_image"
66 src="{{ display_media }}"
67 alt="Image for {{ media.title }}" />
68 </a>
69 {% else %}
9b424b17
CAW
70 <img class="media_image"
71 src="{{ display_media }}"
72 alt="Image for {{ media.title }}" />
38816c66
CAW
73 {% endif %}
74 {% endblock %}
75 </div>
f80f5b58
CAW
76 <h2 class="media_title">
77 {{ media.title }}
78 </h2>
ee9a0e3c
JS
79 {% if request.user and
80 (media.uploader == request.user._id or
81 request.user.is_admin) %}
82 {% set edit_url = request.urlgen('mediagoblin.edit.edit_media',
83 user= media.get_uploader.username,
84 media= media._id) %}
85 <a class="button_action" href="{{ edit_url }}">{% trans %}Edit{% endtrans %}</a>
86 {% set delete_url = request.urlgen('mediagoblin.user_pages.media_confirm_delete',
87 user= media.get_uploader.username,
88 media= media._id) %}
89 <a class="button_action" href="{{ delete_url }}">{% trans %}Delete{% endtrans %}</a>
90 {% endif %}
f80f5b58
CAW
91 {% autoescape False %}
92 <p>{{ media.description_html }}</p>
ee9a0e3c
JS
93 {% endautoescape %}
94 {% if media.attachment_files|count %}
95 <h3>Attachments</h3>
96 <ul>
97 {% for attachment in media.attachment_files %}
98 <li>
99 <a href="{{ request.app.public_store.file_url(attachment.filepath) }}">
100 {{ attachment.name }}
101 </a>
102 </li>
103 {% endfor %}
104 </ul>
105 {% endif %}
106 {% if app_config['allow_attachments']
107 and request.user
108 and (media.uploader == request.user._id
109 or request.user.is_admin) %}
110 <p>
111 <a href="{{ request.urlgen('mediagoblin.edit.attachments',
112 user=media.get_uploader.username,
113 media=media._id) }}">Add attachment</a>
114 </p>
115 {% endif %}
694e965f 116 {% if comments %}
694e965f
JS
117 <a
118 {% if not request.user %}
119 href="{{ request.urlgen('mediagoblin.auth.login') }}"
120 {% endif %}
121 class="button_action" id="button_addcomment" title="Add a comment">
ee9a0e3c 122 {% trans %}Add a comment{% endtrans %}
694e965f 123 </a>
e360a992 124 {% if request.user %}
f80f5b58 125 <form action="{{ request.urlgen('mediagoblin.user_pages.media_post_comment',
05751758 126 user= media.get_uploader.username,
75a12d63 127 media=media._id) }}" method="POST" id="form_comment">
bb3b9e40 128 <p>
fafec727 129 {% trans %}You can use <a href="http://daringfireball.net/projects/markdown/basics">Markdown</a> for formatting.{% endtrans %}
bb3b9e40 130 </p>
f80f5b58
CAW
131 {{ wtforms_util.render_divs(comment_form) }}
132 <div class="form_submit_buttons">
75a12d63 133 <input type="submit" value="{% trans %}Add this comment{% endtrans %}" class="button_action" />
f80f5b58
CAW
134 {{ csrf_token }}
135 </div>
136 </form>
e360a992 137 {% endif %}
694e965f
JS
138 {% for comment in comments %}
139 {% set comment_author = comment.get_author %}
140 {% if pagination.active_id == comment._id %}
141 <div class="comment_wrapper comment_active" id="comment-{{ comment._id }}">
142 <a name="comment" id="comment"></a>
143 {% else %}
144 <div class="comment_wrapper" id="comment-{{ comment._id }}">
145 {% endif %}
55dbaa9b 146 <div class="comment_author">
694e965f
JS
147 <img src="{{ request.staticdirect('/images/icon_comment.png') }}" />
148 <a href="{{ request.urlgen('mediagoblin.user_pages.user_home',
149 user = comment_author.username) }}">
0dedf3f2 150 {{ comment_author.username -}}
694e965f
JS
151 </a>
152 {% trans %}at{% endtrans %}
153 <a href="{{ request.urlgen('mediagoblin.user_pages.media_home.view_comment',
154 comment = comment._id,
155 user = media.get_uploader.username,
3e907d55 156 media = media.slug_or_id) }}#comment">
694e965f 157 {{ comment.created.strftime("%I:%M%p %Y-%m-%d") }}
55dbaa9b
JS
158 </a>:
159 </div>
160 <div class="comment_content">
161 {% autoescape False %}
162 {{ comment.content_html }}
163 {% endautoescape %}
6f65e9eb 164 </div>
694e965f
JS
165 </div>
166 {% endfor %}
0eb649ff
E
167 {{ render_pagination(request, pagination,
168 media.url_for_self(request.urlgen)) }}
aa7d1a2f 169 {% endif %}
b21c9434
JS
170 </div>
171 <div class="media_sidebar">
ee9a0e3c 172 {% trans date=media.created.strftime("%Y-%m-%d") -%}
327a1bb2 173 <h3>Added on</h3>
ee9a0e3c
JS
174 <p>{{ date }}</p>
175 {%- endtrans %}
f80f5b58
CAW
176 {% if media.tags %}
177 {% include "mediagoblin/utils/tags.html" %}
aa7d1a2f 178 {% endif %}
5d900647 179
99a270e9 180 {% include "mediagoblin/utils/license.html" %}
6d9ce47f 181
cc7ca4da
JW
182 {% include "mediagoblin/utils/geolocation_map.html" %}
183
184 {% include "mediagoblin/utils/exif.html" %}
f80f5b58 185 </div>
85778e79 186 <div class="clear"></div>
d3060210 187{% endblock %}