Add Markdown for submit page, edit page, profile edit page; thus fixing ticket #690
[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_head %}
26 <script type="text/javascript"
27 src="{{ request.staticdirect('/js/comment_show.js') }}"></script>
28 {% endblock mediagoblin_head %}
29
30 {% block mediagoblin_content %}
31 <div class="grid_11 alpha">
32 <div class="media_image_container">
33 {% block mediagoblin_media %}
34 {% set display_media = request.app.public_store.file_url(
35 media.get_display_media(media.media_files)) %}
36 {# if there's a medium file size, that means the medium size
37 # isn't the original... so link to the original!
38 #}
39 {% if media.media_files.has_key('medium') %}
40 <a href="{{ request.app.public_store.file_url(
41 media.media_files['original']) }}">
42 <img class="media_image"
43 src="{{ display_media }}"
44 alt="Image for {{ media.title }}" />
45 </a>
46 {% else %}
47 <img class="media_image"
48 src="{{ display_media }}"
49 alt="Image for {{ media.title }}" />
50 {% endif %}
51 {% endblock %}
52 </div>
53 <h2 class="media_title">
54 {{ media.title }}
55 </h2>
56 {% autoescape False %}
57 <p>{{ media.description_html }}</p>
58 {% endautoescape %}
59 <p class="media_specs">
60 {% trans date=media.created.strftime("%Y-%m-%d") -%}
61 Added on {{ date }}.
62 {%- endtrans %}
63 {% if media['uploader'] == request.user._id or
64 request.user['is_admin'] %}
65 {% set edit_url = request.urlgen('mediagoblin.edit.edit_media',
66 user= media.get_uploader.username,
67 media= media._id) %}
68 <a class="button_action" href="{{ edit_url }}">{% trans %}Edit{% endtrans %}</a>
69 {% set delete_url = request.urlgen('mediagoblin.user_pages.media_confirm_delete',
70 user= media.get_uploader.username,
71 media= media._id) %}
72 <a class="button_action" href="{{ delete_url }}">{% trans %}Delete{% endtrans %}</a>
73 {% endif %}
74 </p>
75 {% if comments %}
76 <h3>
77 {% if comments.count()==1 %}
78 {% trans comment_count=comments.count() -%}{{ comment_count }} comment{%- endtrans %}
79 {% elif comments.count()>1 %}
80 {% trans comment_count=comments.count() -%}{{ comment_count }} comments{%- endtrans %}
81 {% else %}
82 {% trans %}No comments yet.{% endtrans %}
83 {% endif %}
84 <div class="right_align">
85 <a
86 {% if not request.user %}
87 href="{{ request.urlgen('mediagoblin.auth.login') }}"
88 {% endif %}
89 class="button_action" id="button_addcomment" title="Add a comment">
90 {% trans %}Add one{% endtrans %}
91 </a>
92 </div>
93 </h3>
94 {% if request.user %}
95 <form action="{{ request.urlgen('mediagoblin.user_pages.media_post_comment',
96 user= media.get_uploader.username,
97 media=media._id) }}" method="POST" id="form_comment">
98 <p>
99 {% trans %}Type your comment here. You can use <a href="http://daringfireball.net/projects/markdown/basics">Markdown</a> for formatting.{% endtrans %}
100 </p>
101 {{ wtforms_util.render_divs(comment_form) }}
102 <div class="form_submit_buttons">
103 <input type="submit" value="{% trans %}Add this comment{% endtrans %}" class="button_action" />
104 {{ csrf_token }}
105 </div>
106 </form>
107 {% endif %}
108 {% for comment in comments %}
109 {% set comment_author = comment.get_author %}
110 {% if pagination.active_id == comment._id %}
111 <div class="comment_wrapper comment_active" id="comment-{{ comment._id }}">
112 <a name="comment" id="comment"></a>
113 {% else %}
114 <div class="comment_wrapper" id="comment-{{ comment._id }}">
115 {% endif %}
116 <div class="comment_content">
117 {% autoescape False %}
118 {{ comment.content_html }}
119 {% endautoescape %}
120 <img src="{{ request.staticdirect('/images/icon_comment.png') }}" />
121 <a href="{{ request.urlgen('mediagoblin.user_pages.user_home',
122 user = comment_author.username) }}">
123 {{ comment_author.username }}
124 </a>
125 {% trans %}at{% endtrans %}
126 <a href="{{ request.urlgen('mediagoblin.user_pages.media_home.view_comment',
127 comment = comment._id,
128 user = media.get_uploader.username,
129 media = media.slug) }}#comment">
130 {{ comment.created.strftime("%I:%M%p %Y-%m-%d") }}
131 </a>
132 </div>
133 </div>
134 {% endfor %}
135 {{ render_pagination(request, pagination,
136 media.url_for_self(request.urlgen)) }}
137 {% endif %}
138 </div>
139 <div class="grid_5 omega">
140 {% trans user_url=request.urlgen(
141 'mediagoblin.user_pages.user_home',
142 user=media.get_uploader.username),
143 username=media.get_uploader.username -%}
144 <p>❖ Browsing media by <a href="{{ user_url }}">{{ username }}</a></p>
145 {%- endtrans %}
146 {% include "mediagoblin/utils/prev_next.html" %}
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 {% if app_config['allow_attachments']
160 and (media.uploader == request.user._id
161 or request.user.is_admin) %}
162 <p>
163 <a href="{{ request.urlgen('mediagoblin.edit.attachments',
164 user=media.get_uploader.username,
165 media=media._id) }}">Add attachment</a>
166 </p>
167 {% endif %}
168 {% if media.tags %}
169 {% include "mediagoblin/utils/tags.html" %}
170 {% endif %}
171 </div>
172 {% endblock %}