added support for original audio download; rename
[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 }}"
4a5b97ba
CAW
67 alt="{% trans media_title=media.title -%}
68 Image for {{ media_title }}{% endtrans %}" />
38816c66
CAW
69 </a>
70 {% else %}
9b424b17
CAW
71 <img class="media_image"
72 src="{{ display_media }}"
4a5b97ba
CAW
73 alt="{% trans media_title=media.title -%}
74 Image for {{ media_title }}{% endtrans %}" />
38816c66
CAW
75 {% endif %}
76 {% endblock %}
77 </div>
f80f5b58
CAW
78 <h2 class="media_title">
79 {{ media.title }}
80 </h2>
ee9a0e3c
JS
81 {% if request.user and
82 (media.uploader == request.user._id or
83 request.user.is_admin) %}
84 {% set edit_url = request.urlgen('mediagoblin.edit.edit_media',
85 user= media.get_uploader.username,
86 media= media._id) %}
87 <a class="button_action" href="{{ edit_url }}">{% trans %}Edit{% endtrans %}</a>
88 {% set delete_url = request.urlgen('mediagoblin.user_pages.media_confirm_delete',
89 user= media.get_uploader.username,
90 media= media._id) %}
91 <a class="button_action" href="{{ delete_url }}">{% trans %}Delete{% endtrans %}</a>
92 {% endif %}
f80f5b58
CAW
93 {% autoescape False %}
94 <p>{{ media.description_html }}</p>
ee9a0e3c
JS
95 {% endautoescape %}
96 {% if media.attachment_files|count %}
97 <h3>Attachments</h3>
98 <ul>
99 {% for attachment in media.attachment_files %}
100 <li>
101 <a href="{{ request.app.public_store.file_url(attachment.filepath) }}">
102 {{ attachment.name }}
103 </a>
104 </li>
105 {% endfor %}
106 </ul>
107 {% endif %}
108 {% if app_config['allow_attachments']
109 and request.user
110 and (media.uploader == request.user._id
111 or request.user.is_admin) %}
112 <p>
113 <a href="{{ request.urlgen('mediagoblin.edit.attachments',
114 user=media.get_uploader.username,
115 media=media._id) }}">Add attachment</a>
116 </p>
117 {% endif %}
694e965f 118 {% if comments %}
694e965f
JS
119 <a
120 {% if not request.user %}
121 href="{{ request.urlgen('mediagoblin.auth.login') }}"
122 {% endif %}
123 class="button_action" id="button_addcomment" title="Add a comment">
ee9a0e3c 124 {% trans %}Add a comment{% endtrans %}
694e965f 125 </a>
e360a992 126 {% if request.user %}
f80f5b58 127 <form action="{{ request.urlgen('mediagoblin.user_pages.media_post_comment',
05751758 128 user= media.get_uploader.username,
75a12d63 129 media=media._id) }}" method="POST" id="form_comment">
bb3b9e40 130 <p>
fafec727 131 {% trans %}You can use <a href="http://daringfireball.net/projects/markdown/basics">Markdown</a> for formatting.{% endtrans %}
bb3b9e40 132 </p>
f80f5b58
CAW
133 {{ wtforms_util.render_divs(comment_form) }}
134 <div class="form_submit_buttons">
75a12d63 135 <input type="submit" value="{% trans %}Add this comment{% endtrans %}" class="button_action" />
f80f5b58
CAW
136 {{ csrf_token }}
137 </div>
138 </form>
e360a992 139 {% endif %}
694e965f
JS
140 {% for comment in comments %}
141 {% set comment_author = comment.get_author %}
142 {% if pagination.active_id == comment._id %}
143 <div class="comment_wrapper comment_active" id="comment-{{ comment._id }}">
144 <a name="comment" id="comment"></a>
145 {% else %}
146 <div class="comment_wrapper" id="comment-{{ comment._id }}">
147 {% endif %}
55dbaa9b 148 <div class="comment_author">
694e965f
JS
149 <img src="{{ request.staticdirect('/images/icon_comment.png') }}" />
150 <a href="{{ request.urlgen('mediagoblin.user_pages.user_home',
151 user = comment_author.username) }}">
0dedf3f2 152 {{ comment_author.username -}}
694e965f
JS
153 </a>
154 {% trans %}at{% endtrans %}
155 <a href="{{ request.urlgen('mediagoblin.user_pages.media_home.view_comment',
156 comment = comment._id,
157 user = media.get_uploader.username,
3e907d55 158 media = media.slug_or_id) }}#comment">
694e965f 159 {{ comment.created.strftime("%I:%M%p %Y-%m-%d") }}
55dbaa9b
JS
160 </a>:
161 </div>
162 <div class="comment_content">
163 {% autoescape False %}
164 {{ comment.content_html }}
165 {% endautoescape %}
6f65e9eb 166 </div>
694e965f
JS
167 </div>
168 {% endfor %}
0eb649ff
E
169 {{ render_pagination(request, pagination,
170 media.url_for_self(request.urlgen)) }}
aa7d1a2f 171 {% endif %}
b21c9434
JS
172 </div>
173 <div class="media_sidebar">
ee9a0e3c 174 {% trans date=media.created.strftime("%Y-%m-%d") -%}
327a1bb2 175 <h3>Added on</h3>
ee9a0e3c
JS
176 <p>{{ date }}</p>
177 {%- endtrans %}
f80f5b58
CAW
178 {% if media.tags %}
179 {% include "mediagoblin/utils/tags.html" %}
aa7d1a2f 180 {% endif %}
5d900647 181
99a270e9 182 {% include "mediagoblin/utils/license.html" %}
6d9ce47f 183
cc7ca4da
JW
184 {% include "mediagoblin/utils/geolocation_map.html" %}
185
186 {% include "mediagoblin/utils/exif.html" %}
b781c3c9
JK
187
188 {% block mediagoblin_sidebar %}
189 {% endblock %}
f80f5b58 190 </div>
85778e79 191 <div class="clear"></div>
d3060210 192{% endblock %}