Merge branch 'master' of gitorious.org:mediagoblin/mediagoblin
[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 %}
ee9a0e3c
JS
45 {% trans user_url=request.urlgen(
46 'mediagoblin.user_pages.user_home',
47 user=media.get_uploader.username),
48 username=media.get_uploader.username -%}
49 <p class="context">❖ Browsing media by <a href="{{ user_url }}">{{ username }}</a></p>
50 {%- endtrans %}
51 {% include "mediagoblin/utils/prev_next.html" %}
141f14e2 52 <div class="media_pane">
38816c66
CAW
53 <div class="media_image_container">
54 {% block mediagoblin_media %}
55 {% set display_media = request.app.public_store.file_url(
56 media.get_display_media(media.media_files)) %}
57 {# if there's a medium file size, that means the medium size
58 # isn't the original... so link to the original!
59 #}
60 {% if media.media_files.has_key('medium') %}
61 <a href="{{ request.app.public_store.file_url(
62 media.media_files['original']) }}">
63 <img class="media_image"
64 src="{{ display_media }}"
65 alt="Image for {{ media.title }}" />
66 </a>
67 {% else %}
9b424b17
CAW
68 <img class="media_image"
69 src="{{ display_media }}"
70 alt="Image for {{ media.title }}" />
38816c66
CAW
71 {% endif %}
72 {% endblock %}
73 </div>
f80f5b58
CAW
74 <h2 class="media_title">
75 {{ media.title }}
76 </h2>
ee9a0e3c
JS
77 {% if request.user and
78 (media.uploader == request.user._id or
79 request.user.is_admin) %}
80 {% set edit_url = request.urlgen('mediagoblin.edit.edit_media',
81 user= media.get_uploader.username,
82 media= media._id) %}
83 <a class="button_action" href="{{ edit_url }}">{% trans %}Edit{% endtrans %}</a>
84 {% set delete_url = request.urlgen('mediagoblin.user_pages.media_confirm_delete',
85 user= media.get_uploader.username,
86 media= media._id) %}
87 <a class="button_action" href="{{ delete_url }}">{% trans %}Delete{% endtrans %}</a>
88 {% endif %}
f80f5b58
CAW
89 {% autoescape False %}
90 <p>{{ media.description_html }}</p>
ee9a0e3c
JS
91 {% endautoescape %}
92 {% if media.attachment_files|count %}
93 <h3>Attachments</h3>
94 <ul>
95 {% for attachment in media.attachment_files %}
96 <li>
97 <a href="{{ request.app.public_store.file_url(attachment.filepath) }}">
98 {{ attachment.name }}
99 </a>
100 </li>
101 {% endfor %}
102 </ul>
103 {% endif %}
104 {% if app_config['allow_attachments']
105 and request.user
106 and (media.uploader == request.user._id
107 or request.user.is_admin) %}
108 <p>
109 <a href="{{ request.urlgen('mediagoblin.edit.attachments',
110 user=media.get_uploader.username,
111 media=media._id) }}">Add attachment</a>
112 </p>
113 {% endif %}
694e965f
JS
114 {% if comments %}
115 <h3>
694e965f
JS
116 <div class="right_align">
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
JS
123 </a>
124 </div>
125 </h3>
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 %}
148 <div class="comment_content">
149 {% autoescape False %}
150 {{ comment.content_html }}
151 {% endautoescape %}
152 <img src="{{ request.staticdirect('/images/icon_comment.png') }}" />
153 <a href="{{ request.urlgen('mediagoblin.user_pages.user_home',
154 user = comment_author.username) }}">
155 {{ comment_author.username }}
156 </a>
157 {% trans %}at{% endtrans %}
158 <a href="{{ request.urlgen('mediagoblin.user_pages.media_home.view_comment',
159 comment = comment._id,
160 user = media.get_uploader.username,
3e907d55 161 media = media.slug_or_id) }}#comment">
694e965f
JS
162 {{ comment.created.strftime("%I:%M%p %Y-%m-%d") }}
163 </a>
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
JS
172 {% trans date=media.created.strftime("%Y-%m-%d") -%}
173 <h3 class="sidedata">Added on</h3>
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 %}