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