It's 2012 all up in here
[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
31 {% if app_config['geolocation_map_visible'] %}
32 <link rel="stylesheet"
33 href="{{ request.staticdirect('/extlib/leaflet/leaflet.css') }}" />
34
35 <script type="text/javascript"
36 src="{{ request.staticdirect('/extlib/leaflet/leaflet.js') }}"></script>
37 <script type="text/javascript"
38 src="{{ request.staticdirect('/js/geolocation-map.js') }}"></script>
39 {% endif %}
40 {% endblock mediagoblin_head %}
41
42 {% block mediagoblin_content %}
43 <div class="media_pane">
44 <div class="media_image_container">
45 {% block mediagoblin_media %}
46 {% set display_media = request.app.public_store.file_url(
47 media.get_display_media(media.media_files)) %}
48 {# if there's a medium file size, that means the medium size
49 # isn't the original... so link to the original!
50 #}
51 {% if media.media_files.has_key('medium') %}
52 <a href="{{ request.app.public_store.file_url(
53 media.media_files['original']) }}">
54 <img class="media_image"
55 src="{{ display_media }}"
56 alt="Image for {{ media.title }}" />
57 </a>
58 {% else %}
59 <img class="media_image"
60 src="{{ display_media }}"
61 alt="Image for {{ media.title }}" />
62 {% endif %}
63 {% endblock %}
64 </div>
65 <h2 class="media_title">
66 {{ media.title }}
67 </h2>
68 {% autoescape False %}
69 <p>{{ media.description_html }}</p>
70 {% endautoescape %}
71 <p class="media_specs">
72 {% trans date=media.created.strftime("%Y-%m-%d") -%}
73 Added on {{ date }}.
74 {%- endtrans %}
75 {% if request.user and
76 (media.uploader == request.user._id or
77 request.user.is_admin) %}
78 {% set edit_url = request.urlgen('mediagoblin.edit.edit_media',
79 user= media.get_uploader.username,
80 media= media._id) %}
81 <a class="button_action" href="{{ edit_url }}">{% trans %}Edit{% endtrans %}</a>
82 {% set delete_url = request.urlgen('mediagoblin.user_pages.media_confirm_delete',
83 user= media.get_uploader.username,
84 media= media._id) %}
85 <a class="button_action" href="{{ delete_url }}">{% trans %}Delete{% endtrans %}</a>
86 {% endif %}
87 </p>
88 {% if comments %}
89 <h3>
90 {% if comments.count()==1 %}
91 {% trans comment_count=comments.count() -%}{{ comment_count }} comment{%- endtrans %}
92 {% elif comments.count()>1 %}
93 {% trans comment_count=comments.count() -%}{{ comment_count }} comments{%- endtrans %}
94 {% else %}
95 {% trans %}No comments yet.{% endtrans %}
96 {% endif %}
97 <div class="right_align">
98 <a
99 {% if not request.user %}
100 href="{{ request.urlgen('mediagoblin.auth.login') }}"
101 {% endif %}
102 class="button_action" id="button_addcomment" title="Add a comment">
103 {% trans %}Add one{% endtrans %}
104 </a>
105 </div>
106 </h3>
107 {% if request.user %}
108 <form action="{{ request.urlgen('mediagoblin.user_pages.media_post_comment',
109 user= media.get_uploader.username,
110 media=media._id) }}" method="POST" id="form_comment">
111 <p>
112 {% trans %}You can use <a href="http://daringfireball.net/projects/markdown/basics">Markdown</a> for formatting.{% endtrans %}
113 </p>
114 {{ wtforms_util.render_divs(comment_form) }}
115 <div class="form_submit_buttons">
116 <input type="submit" value="{% trans %}Add this comment{% endtrans %}" class="button_action" />
117 {{ csrf_token }}
118 </div>
119 </form>
120 {% endif %}
121 {% for comment in comments %}
122 {% set comment_author = comment.get_author %}
123 {% if pagination.active_id == comment._id %}
124 <div class="comment_wrapper comment_active" id="comment-{{ comment._id }}">
125 <a name="comment" id="comment"></a>
126 {% else %}
127 <div class="comment_wrapper" id="comment-{{ comment._id }}">
128 {% endif %}
129 <div class="comment_content">
130 {% autoescape False %}
131 {{ comment.content_html }}
132 {% endautoescape %}
133 <img src="{{ request.staticdirect('/images/icon_comment.png') }}" />
134 <a href="{{ request.urlgen('mediagoblin.user_pages.user_home',
135 user = comment_author.username) }}">
136 {{ comment_author.username }}
137 </a>
138 {% trans %}at{% endtrans %}
139 <a href="{{ request.urlgen('mediagoblin.user_pages.media_home.view_comment',
140 comment = comment._id,
141 user = media.get_uploader.username,
142 media = media.slug_or_id) }}#comment">
143 {{ comment.created.strftime("%I:%M%p %Y-%m-%d") }}
144 </a>
145 </div>
146 </div>
147 {% endfor %}
148 {{ render_pagination(request, pagination,
149 media.url_for_self(request.urlgen)) }}
150 {% endif %}
151 </div>
152 <div class="media_sidebar">
153 {% trans user_url=request.urlgen(
154 'mediagoblin.user_pages.user_home',
155 user=media.get_uploader.username),
156 username=media.get_uploader.username -%}
157 <p>❖ Browsing media by <a href="{{ user_url }}">{{ username }}</a></p>
158 {%- endtrans %}
159 {% include "mediagoblin/utils/prev_next.html" %}
160 {% if media.attachment_files|count %}
161 <h3>Attachments</h3>
162 <ul>
163 {% for attachment in media.attachment_files %}
164 <li>
165 <a href="{{ request.app.public_store.file_url(attachment.filepath) }}">
166 {{ attachment.name }}
167 </a>
168 </li>
169 {% endfor %}
170 </ul>
171 {% endif %}
172 {% if app_config['allow_attachments']
173 and request.user
174 and (media.uploader == request.user._id
175 or request.user.is_admin) %}
176 <p>
177 <a href="{{ request.urlgen('mediagoblin.edit.attachments',
178 user=media.get_uploader.username,
179 media=media._id) }}">Add attachment</a>
180 </p>
181 {% endif %}
182 {% if media.tags %}
183 {% include "mediagoblin/utils/tags.html" %}
184 {% endif %}
185
186 {% include "mediagoblin/utils/license.html" %}
187
188 {% include "mediagoblin/utils/geolocation_map.html" %}
189
190 {% include "mediagoblin/utils/exif.html" %}
191 </div>
192 {% endblock %}