11fa72cf86de52fc47779ac5e178115bf6fcfea9
[mediagoblin.git] / mediagoblin / templates / mediagoblin / user_pages / media.html
1 {#
2 # GNU MediaGoblin -- federated, autonomous media hosting
3 # Copyright (C) 2011 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 mediagoblin_content %}
24 {% if media %}
25 <div class="grid_11 alpha">
26 <div class="media_image_container">
27 {% set display_media = request.app.public_store.file_url(
28 media.get_display_media(media.media_files)) %}
29
30 {# if there's a medium file size, that means the medium size
31 # isn't the original... so link to the original!
32 #}
33 {% if media['media_files'].has_key('medium') %}
34 <a href="{{ request.app.public_store.file_url(
35 media['media_files']['original']) }}">
36 <img class="media_image"
37 src="{{ display_media }}"
38 alt="Image for {{ media.title }}" />
39 </a>
40 {% else %}
41 <img class="media_image"
42 src="{{ display_media }}"
43 alt="Image for {{ media.title }}" />
44 {% endif %}
45 </div>
46
47 <h2 class="media_title">
48 {{ media.title }}
49 </h2>
50
51 <p class="media_uploader">
52 {% trans date=media.created.strftime("%Y-%m-%d"),
53 user_url=request.urlgen(
54 'mediagoblin.user_pages.user_home',
55 user=media.uploader().username),
56 username=media.uploader().username -%}
57 Uploaded on {{ date }} by <a href="{{ user_url }}">{{ username }}</a>
58 {%- endtrans %}
59 </p>
60
61 {% autoescape False %}
62 <p>{{ media.description_html }}</p>
63 {% endautoescape %}
64
65 <br />
66 <h3>{% trans %}Comments{% endtrans %}</h3>
67
68 {% if request.user %}
69 <p><a href="#comment_form">{% trans %}Post a comment{% endtrans %}</a></p>
70 {% endif %}
71
72 {% if comments %}
73 {% for comment in comments %}
74 {% set comment_author = comment.author() %}
75 {% if pagination.active_id == comment._id %}
76 <div class="comment_wrapper comment_active" id="comment-{{ comment['_id'] }}">
77 <a name="comment" id="comment"></a>
78 {% else %}
79 <div class="comment_wrapper" id="comment-{{ comment['_id'] }}">
80 {% endif %}
81
82 <div class="comment_content">
83 {% autoescape False %}
84 {{ comment.content_html }}
85 {% endautoescape %}
86 </div>
87
88 <div class="comment_author">&mdash;
89 <a href="{{ request.urlgen('mediagoblin.user_pages.user_home',
90 user = comment_author['username']) }}">
91 {{ comment_author['username'] }}</a>
92 {% trans %}at{% endtrans %}
93 <a href="{{ request.urlgen('mediagoblin.user_pages.media_home.view_comment',
94 comment = comment['_id'],
95 user = media.uploader().username,
96 media = media._id) }}#comment">
97 {{ comment.created.strftime("%Y-%m-%d %I:%M%p") }}
98 </a>
99 </div>
100 </div>
101 {% endfor %}
102
103 {% if request.user %}
104 <form action="{{ request.urlgen('mediagoblin.user_pages.media_post_comment',
105 user= media.uploader().username,
106 media=media._id) }}" method="POST">
107 {{ wtforms_util.render_divs(comment_form) }}
108 <div class="form_submit_buttons">
109 <input type="submit" value="{% trans %}Post comment!{% endtrans %}" class="button" />
110 {{ csrf_token }}
111 </div>
112 </form>
113 {% endif %}
114
115 {{ render_pagination(request, pagination,
116 request.urlgen('mediagoblin.user_pages.media_home',
117 user = media.uploader().username,
118 media = media._id)) }}
119 </div>
120 {% endif %}
121
122 <div class="grid_5 omega">
123 {% include "mediagoblin/utils/prev_next.html" %}
124
125 {% if media['uploader'] == request.user['_id'] or
126 request.user['is_admin'] %}
127 <h3>{% trans %}Actions{% endtrans %}</h3>
128 <p>
129 {% set edit_url = request.urlgen('mediagoblin.edit.edit_media',
130 user= media.uploader().username,
131 media= media._id) %}
132 <a href="{{ edit_url }}"
133 ><img src="{{ request.staticdirect('/images/icon_edit.png') }}"
134 class="media_icon" /></a>
135 <a href="{{ edit_url }}">{% trans %}edit{% endtrans %}</a>
136 </p>
137 <p>
138 {% set delete_url = request.urlgen('mediagoblin.user_pages.media_confirm_delete',
139 user= media.uploader().username,
140 media= media._id) %}
141 <a href="{{ delete_url }}"
142 ><img src="{{ request.staticdirect('/images/icon_delete.png') }}"
143 class="media_icon" /></a>
144 <a href="{{ delete_url }}">{% trans %}delete{% endtrans %}</a>
145 </p>
146 {% endif %}
147
148 {% if media.attachment_files|count %}
149 <h3>Attachments</h3>
150 <ul>
151 {% for attachment in media.attachment_files %}
152 <li>
153 <a href="{{ request.app.public_store.file_url(attachment.filepath) }}">
154 {{ attachment.name }}
155 </a>
156 </li>
157 {% endfor %}
158 </ul>
159 {% endif %}
160
161 {% if app_config['allow_attachments']
162 and (media['uploader'] == request.user['_id']
163 or request.user['is_admin']) %}
164 <p>
165 <a href="{{ request.urlgen('mediagoblin.edit.attachments',
166 user=media.uploader().username,
167 media=media._id) }}">Add attachment</a>
168 </p>
169 {% endif %}
170
171 {% if media.tags %}
172 {% include "mediagoblin/utils/tags.html" %}
173 {% endif %}
174 </div>
175 {% else %}
176 <p>{% trans %}Sorry, no such media found.{% endtrans %}<p/>
177 {% endif %}
178 {% endblock %}