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