adds previous and next links in the sidebar
[mediagoblin.git] / mediagoblin / templates / mediagoblin / user_pages / media.html
1 {#
2 # GNU MediaGoblin -- federated, autonomous media hosting
3 # Copyright (C) 2011 Free Software Foundation, Inc
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
22 {% block mediagoblin_content %}
23 {# temporarily, an "image gallery" that isn't one really ;) #}
24 {% if media %}
25 <div class="grid_8 alpha media_image">
26 <h1>
27 {{media.title}}
28 </h1>
29 <img class="media_image" src="{{ request.app.public_store.file_url(
30 media.media_files.main) }}" />
31 <p>
32 Uploaded on
33 {{ "%4d-%02d-%02d"|format(media.created.year,
34 media.created.month, media.created.day) }}
35 by
36 <a href="{{ request.urlgen('mediagoblin.user_pages.user_home',
37 user= media.uploader().username) }}">
38 {{- media.uploader().username }}</a>
39 </p>
40
41 {% autoescape False %}
42 <p>{{ media.description_html }}</p>
43 {% endautoescape %}
44
45 {% if media['uploader'] == request.user['_id'] %}
46 <p><a href="{{ request.urlgen('mediagoblin.edit.edit_media',
47 user= media.uploader().username,
48 media= media._id) }}">Edit</a></p>
49 {% endif %}
50 {% if request.user %}
51 <form action="{{ request.urlgen('mediagoblin.user_pages.media_post_comment',
52 user= media.uploader().username,
53 media=media._id) }}" method="POST">
54 <h3>Post a comment!</h3>
55 {{ wtforms_util.render_field_div(comment_form.comment) }}
56 <div class="form_submit_buttons">
57 <input type="submit" value="Submit" class="button" />
58 </div>
59 </form>
60 {% endif %}
61
62 {#
63 {{ wtforms_util.render_textarea_div(submit_form.description) }}
64 {{ wtforms_util.render_field_div(submit_form.file) }}
65 #}
66
67 {% if comments %}
68 <h3>Comments</h3>
69 {% for comment in comments %}
70 <div class="comment_wrapper" id="comment-{{ comment['_id'] }}">
71 <div class="comment_author">By:
72 <a href="{{ request.urlgen('mediagoblin.user_pages.user_home',
73 user = comment['author']['username']) }}">
74 {{ comment['author']['username'] }}
75 </a>
76 </div>
77 <div class="comment_datetime">
78 <a href="#comment-{{ comment['_id'] }}">
79 {{ "%4d-%02d-%02d %02d:%02d"|format(comment.created.year,
80 comment.created.month,
81 comment.created.day,
82 comment.created.hour,
83 comment.created.minute) }}
84 </a>
85 </div>
86 <div class="comment_content">
87 {% autoescape False %}
88 {{ comment.content_html }}
89 {% endautoescape %}
90 </div>
91 </div>
92 {% endfor %}
93 {% include "mediagoblin/utils/pagination.html" %}
94 </div>
95 {% endif %}
96
97 <div class="grid_4 omega media_sidebar">
98 <p>This is a sidebar! Yay!</p>
99 {% include "mediagoblin/utils/prev_next.html" %}
100 </div>
101 {% else %}
102 <p>Sorry, no such media found.<p/>
103 {% endif %}
104 {% endblock %}