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