migrate media page to skeleton
[mediagoblin.git] / mediagoblin / templates / mediagoblin / user_pages / media.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 {% 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_head %}
26 <!--[if lte IE 8]><link rel="stylesheet"
27 href="{{ request.staticdirect('/extlib/leaflet/leaflet.ie.css') }}" /><![endif]-->
28 <script type="text/javascript"
29 src="{{ request.staticdirect('/js/comment_show.js') }}"></script>
30 <script type="text/javascript"
31 src="{{ request.staticdirect('/js/keyboard_navigation.js') }}"></script>
32
33 {% template_hook("media_head") %}
34 {% endblock mediagoblin_head %}
35 {% block mediagoblin_content %}
36 <div class="row hell">
37 <p class="eleven columns context">
38 {%- trans user_url=request.urlgen(
39 'mediagoblin.user_pages.user_home',
40 user=media.get_uploader.username),
41 username=media.get_uploader.username -%}
42 ❖ Browsing media by <a href="{{user_url}}">{{username}}</a>
43 {%- endtrans -%}
44 </p>
45 <div class="five columns">
46 {% include "mediagoblin/utils/prev_next.html" %}
47 </div>
48 </div>
49 <div class="media_pane eleven columns">
50 <div class="media_image_container">
51 {% block mediagoblin_media %}
52 {% set display_media = request.app.public_store.file_url(
53 media.get_display_media()[1]) %}
54 {# if there's a medium file size, that means the medium size
55 # isn't the original... so link to the original!
56 #}
57 {% if media.media_files.has_key('medium') %}
58 <a href="{{ request.app.public_store.file_url(
59 media.media_files['original']) }}">
60 <img class="media_image"
61 src="{{ display_media }}"
62 alt="{% trans media_title=media.title -%}
63 Image for {{ media_title }}{% endtrans %}" />
64 </a>
65 {% else %}
66 <img class="media_image"
67 src="{{ display_media }}"
68 alt="{% trans media_title=media.title -%}
69 Image for {{ media_title }}{% endtrans %}" />
70 {% endif %}
71 {% endblock %}
72 </div>
73 <h2 class="media_title">
74 {{ media.title }}
75 </h2>
76 {% if request.user and
77 (media.uploader == request.user.id or
78 request.user.has_privilege('admin')) %}
79 {% set edit_url = request.urlgen('mediagoblin.edit.edit_media',
80 user= media.get_uploader.username,
81 media_id=media.id) %}
82 <a class="button_action" href="{{ edit_url }}">{% trans %}Edit{% endtrans %}</a>
83 {% set delete_url = request.urlgen('mediagoblin.user_pages.media_confirm_delete',
84 user= media.get_uploader.username,
85 media_id=media.id) %}
86 <a class="button_action" href="{{ delete_url }}">{% trans %}Delete{% endtrans %}</a>
87
88 {% endif %}
89 {% autoescape False %}
90 <p>{{ media.description_html }}</p>
91 {% endautoescape %}
92 {% if comments and request.user and request.user.has_privilege('commenter') %}
93 {% if app_config['allow_comments'] %}
94 <a
95 {% if not request.user %}
96 href="{{ request.urlgen('mediagoblin.auth.login') }}?next={{
97 request.base_url|urlencode }}"
98 {% endif %}
99 class="button_action" id="button_addcomment" title="Add a comment">
100 {% trans %}Add a comment{% endtrans %}
101 </a>
102 {% include "mediagoblin/utils/comment-subscription.html" %}
103
104 {% endif %}
105 {% if request.user %}
106 <form action="{{ request.urlgen('mediagoblin.user_pages.media_post_comment',
107 user= media.get_uploader.username,
108 media_id=media.id) }}" method="POST" id="form_comment">
109 {{ wtforms_util.render_divs(comment_form) }}
110 <div class="form_submit_buttons">
111 <input type="submit" value="{% trans %}Add this comment{% endtrans %}" class="button_action" />
112 {{ csrf_token }}
113 </div>
114 <input type="hidden" value="{{ request.urlgen('mediagoblin.user_pages.media_preview_comment') }}" id="previewURL" />
115 <input type="hidden" value="{% trans %}Comment Preview{% endtrans %}" id="previewText"/>
116 </form>
117 <div id="comment_preview"></div>
118 {% endif %}
119 <ul style="list-style:none">
120 {% for comment in comments %}
121 {% set comment_author = comment.get_author %}
122 <li id="comment-{{ comment.id }}"
123 {%- if pagination.active_id == comment.id %}
124 class="comment_wrapper comment_active">
125 <a name="comment" id="comment"></a>
126 {%- else %}
127 class="comment_wrapper">
128 {%- endif %}
129 <div class="comment_author">
130 <img src="{{ request.staticdirect('/images/icon_comment.png') }}" />
131 <a href="{{ request.urlgen('mediagoblin.user_pages.user_home',
132 user=comment_author.username) }}"
133 class="comment_authorlink">
134 {{- comment_author.username -}}
135 </a>
136 <a href="{{ request.urlgen('mediagoblin.user_pages.media_home.view_comment',
137 comment=comment.id,
138 user=media.get_uploader.username,
139 media=media.slug_or_id) }}#comment"
140 class="comment_whenlink">
141 <span title='{{- comment.created.strftime("%I:%M%p %Y-%m-%d") -}}'>
142 {%- trans formatted_time=timesince(comment.created) -%}
143 {{ formatted_time }} ago
144 {%- endtrans -%}
145 </span></a>:
146 </div>
147 <div class="comment_content">
148 {% autoescape False -%}
149 {{ comment.content_html }}
150 {%- endautoescape %}
151 </div>
152 <div>
153 {% if app_config.allow_reporting %}
154 <a href="{{ request.urlgen('mediagoblin.user_pages.media_home.report_comment',
155 user=media.get_uploader.username,
156 media=media.slug_or_id,
157 comment=comment.id) }}">
158 {% trans %}Report{% endtrans %}</a>
159 {% endif %}
160 </div>
161 </li>
162 {% endfor %}
163 </ul>
164 {{ render_pagination(request, pagination,
165 media.url_for_self(request.urlgen)) }}
166 {% endif %}
167 </div><!--end media_pane-->
168 <div class="five columns media_sidebar">
169 <h3>{% trans %}Added{% endtrans %}</h3>
170 <p><span title="{{ media.created.strftime("%I:%M%p %Y-%m-%d") }}">
171 {%- trans formatted_time=timesince(media.created) -%}
172 {{ formatted_time }} ago
173 {%- endtrans -%}
174 </span></p>
175
176 {% block mediagoblin_after_added_sidebar %}
177 {% endblock %}
178
179 {% if media.tags %}
180 {% include "mediagoblin/utils/tags.html" %}
181 {% endif %}
182
183 {% include "mediagoblin/utils/collections.html" %}
184
185 {% if app_config.allow_reporting %}
186 {% include "mediagoblin/utils/report.html" %}
187 {% endif %}
188
189 {% include "mediagoblin/utils/license.html" %}
190
191 {% include "mediagoblin/utils/exif.html" %}
192
193 {%- if media.attachment_files|count %}
194 <h3>{% trans %}Attachments{% endtrans %}</h3>
195 <ul>
196 {%- for attachment in media.attachment_files %}
197 <li>
198 <a href="{{ request.app.public_store.file_url(attachment.filepath) }}">
199 {{- attachment.name -}}
200 </a>
201 </li>
202 {%- endfor %}
203 </ul>
204 {%- endif %}
205 {%- if app_config['allow_attachments']
206 and request.user
207 and (media.uploader == request.user.id
208 or request.user.has_privilege('admin')) %}
209 {%- if not media.attachment_files|count %}
210 <h3>{% trans %}Attachments{% endtrans %}</h3>
211 {%- endif %}
212 <p>
213 <a href="{{ request.urlgen('mediagoblin.edit.attachments',
214 user=media.get_uploader.username,
215 media_id=media.id) }}">
216 {%- trans %}Add attachment{% endtrans -%}
217 </a>
218 </p>
219 {%- endif %}
220
221 {% template_hook("media_sideinfo") %}
222
223 {% block mediagoblin_sidebar %}
224 {% endblock %}
225
226 </div>
227 <div class="clear"></div>
228 {% endblock %}