Merge remote-tracking branch 'refs/remotes/tryggvib/532-exif-creation-date'
[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#}
954b407c 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 32
cac17c15 33 {% template_hook("media_head") %}
75a12d63
JS
34{% endblock mediagoblin_head %}
35
9a16e16f 36{% block mediagoblin_content %}
0dedf3f2
E
37 <p class="context">
38 {%- trans user_url=request.urlgen(
ee9a0e3c
JS
39 'mediagoblin.user_pages.user_home',
40 user=media.get_uploader.username),
41 username=media.get_uploader.username -%}
0dedf3f2
E
42 ❖ Browsing media by <a href="{{user_url}}">{{username}}</a>
43 {%- endtrans -%}
44 </p>
ee9a0e3c 45 {% include "mediagoblin/utils/prev_next.html" %}
aa4f958a 46 <div class="media_pane">
38816c66
CAW
47 <div class="media_image_container">
48 {% block mediagoblin_media %}
49 {% set display_media = request.app.public_store.file_url(
ddbf6af1 50 media.get_display_media()[1]) %}
38816c66
CAW
51 {# if there's a medium file size, that means the medium size
52 # isn't the original... so link to the original!
53 #}
54 {% if media.media_files.has_key('medium') %}
55 <a href="{{ request.app.public_store.file_url(
56 media.media_files['original']) }}">
57 <img class="media_image"
58 src="{{ display_media }}"
4a5b97ba
CAW
59 alt="{% trans media_title=media.title -%}
60 Image for {{ media_title }}{% endtrans %}" />
38816c66
CAW
61 </a>
62 {% else %}
9b424b17
CAW
63 <img class="media_image"
64 src="{{ display_media }}"
4a5b97ba
CAW
65 alt="{% trans media_title=media.title -%}
66 Image for {{ media_title }}{% endtrans %}" />
38816c66
CAW
67 {% endif %}
68 {% endblock %}
69 </div>
f80f5b58
CAW
70 <h2 class="media_title">
71 {{ media.title }}
72 </h2>
ee9a0e3c 73 {% if request.user and
aa4f958a 74 (media.uploader == request.user.id or
ee9a0e3c
JS
75 request.user.is_admin) %}
76 {% set edit_url = request.urlgen('mediagoblin.edit.edit_media',
77 user= media.get_uploader.username,
461dd971 78 media_id=media.id) %}
ee9a0e3c
JS
79 <a class="button_action" href="{{ edit_url }}">{% trans %}Edit{% endtrans %}</a>
80 {% set delete_url = request.urlgen('mediagoblin.user_pages.media_confirm_delete',
81 user= media.get_uploader.username,
461dd971 82 media_id=media.id) %}
ee9a0e3c
JS
83 <a class="button_action" href="{{ delete_url }}">{% trans %}Delete{% endtrans %}</a>
84 {% endif %}
f80f5b58
CAW
85 {% autoescape False %}
86 <p>{{ media.description_html }}</p>
ee9a0e3c 87 {% endautoescape %}
694e965f 88 {% if comments %}
694e965f
JS
89 <a
90 {% if not request.user %}
91 href="{{ request.urlgen('mediagoblin.auth.login') }}"
92 {% endif %}
aa4f958a
DT
93 {% if app_config['allow_comments'] %}
94 class="button_action" id="button_addcomment" title="Add a comment">
95 {% trans %}Add a comment{% endtrans %}
96 {% endif %}
694e965f 97 </a>
e360a992 98 {% if request.user %}
aa4f958a 99 <form action="{{ request.urlgen('mediagoblin.user_pages.media_post_comment',
05751758 100 user= media.get_uploader.username,
461dd971 101 media_id=media.id) }}" method="POST" id="form_comment">
f80f5b58
CAW
102 {{ wtforms_util.render_divs(comment_form) }}
103 <div class="form_submit_buttons">
75a12d63 104 <input type="submit" value="{% trans %}Add this comment{% endtrans %}" class="button_action" />
f80f5b58
CAW
105 {{ csrf_token }}
106 </div>
107 </form>
e360a992 108 {% endif %}
5bae4af1 109 <ul style="list-style:none">
694e965f
JS
110 {% for comment in comments %}
111 {% set comment_author = comment.get_author %}
5bae4af1
E
112 <li id="comment-{{ comment.id }}"
113 {%- if pagination.active_id == comment.id %}
114 class="comment_wrapper comment_active">
115 <a name="comment" id="comment"></a>
116 {%- else %}
117 class="comment_wrapper">
118 {%- endif %}
119 <div class="comment_author">
694e965f
JS
120 <img src="{{ request.staticdirect('/images/icon_comment.png') }}" />
121 <a href="{{ request.urlgen('mediagoblin.user_pages.user_home',
64308aca
CAW
122 user=comment_author.username) }}"
123 class="comment_authorlink">
4637d50c 124 {{- comment_author.username -}}
694e965f 125 </a>
694e965f 126 <a href="{{ request.urlgen('mediagoblin.user_pages.media_home.view_comment',
397c22d1
CAW
127 comment=comment.id,
128 user=media.get_uploader.username,
64308aca
CAW
129 media=media.slug_or_id) }}#comment"
130 class="comment_whenlink">
f1c3807d 131 <span title='{{- comment.created.strftime("%I:%M%p %Y-%m-%d") -}}'>
eac52ac1
CAW
132 {%- trans formatted_time=timesince(comment.created) -%}
133 {{ formatted_time }} ago
134 {%- endtrans -%}
135 </span></a>:
55dbaa9b
JS
136 </div>
137 <div class="comment_content">
4637d50c 138 {% autoescape False -%}
55dbaa9b 139 {{ comment.content_html }}
4637d50c 140 {%- endautoescape %}
6f65e9eb 141 </div>
5bae4af1 142 </li>
694e965f 143 {% endfor %}
5bae4af1 144 </ul>
0eb649ff
E
145 {{ render_pagination(request, pagination,
146 media.url_for_self(request.urlgen)) }}
aa7d1a2f 147 {% endif %}
b21c9434
JS
148 </div>
149 <div class="media_sidebar">
eac52ac1 150 <h3>Added</h3>
05ad187b 151 <p><span title="{{ media.created.strftime("%I:%M%p %Y-%m-%d") }}">
eac52ac1
CAW
152 {%- trans formatted_time=timesince(media.created) -%}
153 {{ formatted_time }} ago
154 {%- endtrans -%}
155 </span></p>
058226d0 156
d682d066
TB
157 {% if app_config['original_date_visible'] %}
158 {% set original_date = media.media_data.get_original_date() %}
159 {% if original_date -%}
160 {% trans date=original_date.strftime("%Y-%m-%d") -%}
161 <h3>Created on</h3>
162 <p>{{ date }}</p>
163 {%- endtrans %}
164 {%- endif %}
24d310e4 165 {% endif %}
058226d0 166
f80f5b58
CAW
167 {% if media.tags %}
168 {% include "mediagoblin/utils/tags.html" %}
aa7d1a2f 169 {% endif %}
5d900647 170
44004c17 171 {% include "mediagoblin/utils/collections.html" %}
be5be115 172
99a270e9 173 {% include "mediagoblin/utils/license.html" %}
6d9ce47f 174
cc7ca4da 175 {% include "mediagoblin/utils/exif.html" %}
aa4f958a 176
954b407c 177 {%- if media.attachment_files|count %}
62b7d1b2
JK
178 <h3>{% trans %}Attachments{% endtrans %}</h3>
179 <ul>
954b407c 180 {%- for attachment in media.attachment_files %}
62b7d1b2
JK
181 <li>
182 <a href="{{ request.app.public_store.file_url(attachment.filepath) }}">
13ab48a7 183 {{- attachment.name -}}
62b7d1b2
JK
184 </a>
185 </li>
954b407c 186 {%- endfor %}
62b7d1b2 187 </ul>
954b407c
E
188 {%- endif %}
189 {%- if app_config['allow_attachments']
62b7d1b2 190 and request.user
5c2b8486 191 and (media.uploader == request.user.id
62b7d1b2 192 or request.user.is_admin) %}
954b407c 193 {%- if not media.attachment_files|count %}
62b7d1b2 194 <h3>{% trans %}Attachments{% endtrans %}</h3>
954b407c 195 {%- endif %}
62b7d1b2
JK
196 <p>
197 <a href="{{ request.urlgen('mediagoblin.edit.attachments',
198 user=media.get_uploader.username,
954b407c
E
199 media_id=media.id) }}">
200 {%- trans %}Add attachment{% endtrans -%}
201 </a>
62b7d1b2 202 </p>
954b407c 203 {%- endif %}
62b7d1b2 204
927be5e8 205 {% template_hook("media_sideinfo") %}
1c2d01ae 206
b781c3c9
JK
207 {% block mediagoblin_sidebar %}
208 {% endblock %}
1c2d01ae 209
f80f5b58 210 </div>
85778e79 211 <div class="clear"></div>
d3060210 212{% endblock %}