Improve indentation a bit
[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 <p><a href="#comment_form">{% trans %}Post a comment{% endtrans %}</a></p>
69
70 {% if comments %}
71 {% for comment in comments %}
72 {% set comment_author = comment.author() %}
73 {% if pagination.active_id == comment._id %}
74 <div class="comment_wrapper comment_active" id="comment-{{ comment['_id'] }}">
75 <a name="comment" id="comment"></a>
76 {% else %}
77 <div class="comment_wrapper" id="comment-{{ comment['_id'] }}">
78 {% endif %}
79
80 <div class="comment_content">
81 {% autoescape False %}
82 {{ comment.content_html }}
83 {% endautoescape %}
84 </div>
85
86 <div class="comment_author">&mdash;
87 <a href="{{ request.urlgen('mediagoblin.user_pages.user_home',
88 user = comment_author['username']) }}">
89 {{ comment_author['username'] }}</a>
90 {% trans %}at{% endtrans %}
91 <a href="{{ request.urlgen('mediagoblin.user_pages.media_home.view_comment',
92 comment = comment['_id'],
93 user = media.uploader().username,
94 media = media._id) }}#comment">
95 {{ comment.created.strftime("%Y-%m-%d %I:%M%p") }}
96 </a>
97 </div>
98 </div>
99 {% endfor %}
100
101 {% if request.user %}
102 <a name="comment_form"></a>
103 <form action="{{ request.urlgen('mediagoblin.user_pages.media_post_comment',
104 user= media.uploader().username,
105 media=media._id) }}" method="POST">
106 {{ wtforms_util.render_divs(comment_form) }}
107 <div class="form_submit_buttons">
108 <input type="submit" value="{% trans %}Post comment!{% endtrans %}" class="button" />
109 {{ csrf_token }}
110 </div>
111 </form>
112 {% endif %}
113
114 {{ render_pagination(request, pagination,
115 request.urlgen('mediagoblin.user_pages.media_home',
116 user = media.uploader().username,
117 media = media._id)) }}
118 </div>
119 {% endif %}
120
121 <div class="grid_5 omega">
122 {% include "mediagoblin/utils/prev_next.html" %}
123
124 {% if media['uploader'] == request.user['_id'] or
125 request.user['is_admin'] %}
126 <h3>Temporary button holder</h3>
127 <p>
128 {% set edit_url = request.urlgen('mediagoblin.edit.edit_media',
129 user= media.uploader().username,
130 media= media._id) %}
131 <a href="{{ edit_url }}"
132 ><img src="{{ request.staticdirect('/images/icon_edit.png') }}"
133 class="media_icon" /></a>
134 <a href="{{ edit_url }}">{% trans %}edit{% endtrans %}</a>
135 </p>
136 <p>
137 {% set delete_url = request.urlgen('mediagoblin.user_pages.media_confirm_delete',
138 user= media.uploader().username,
139 media= media._id) %}
140 <a href="{{ delete_url }}"
141 ><img src="{{ request.staticdirect('/images/icon_delete.png') }}"
142 class="media_icon" /></a>
143 <a href="{{ delete_url }}">{% trans %}delete{% endtrans %}</a>
144 </p>
145 {% endif %}
146
147 {% if media.attachment_files|count %}
148 <h3>Attachments</h3>
149 <ul>
150 {% for attachment in media.attachment_files %}
151 <li>
152 <a href="{{ request.app.public_store.file_url(attachment.filepath) }}">
153 {{ attachment.name }}
154 </a>
155 </li>
156 {% endfor %}
157 </ul>
158 {% endif %}
159
160 {% if app_config['allow_attachments']
161 and (media['uploader'] == request.user['_id']
162 or request.user['is_admin']) %}
163 <p>
164 <a href="{{ request.urlgen('mediagoblin.edit.attachments',
165 user=media.uploader().username,
166 media=media._id) }}">Add attachment</a>
167 </p>
168 {% endif %}
169
170 {% if media.tags %}
171 {% include "mediagoblin/utils/tags.html" %}
172 {% endif %}
173 </div>
174 {% else %}
175 <p>{% trans %}Sorry, no such media found.{% endtrans %}<p/>
176 {% endif %}
177 {% endblock %}