Merge branch 'auth_docs'
[mediagoblin.git] / mediagoblin / templates / mediagoblin / utils / comment-subscription.html
CommitLineData
2d7b6bde
JW
1{#
2# GNU MediaGoblin -- federated, autonomous media hosting
3# Copyright (C) 2011, 2012 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{%- if request.user %}
7949d88a 19 {% set subscription = get_comment_subscription(request.user.id, media.id) %}
2d7b6bde
JW
20 {% if not subscription or not subscription.notify %}
21 <a type="submit" href="{{ request.urlgen('mediagoblin.notifications.subscribe_comments',
22 user=media.get_uploader.username,
9609ddc0 23 media=media.slug_or_id)}}"
2d7b6bde
JW
24 class="button_action">Subscribe to comments
25 </a>
26 {% else %}
27 <a type="submit" href="{{ request.urlgen('mediagoblin.notifications.silence_comments',
28 user=media.get_uploader.username,
9609ddc0 29 media=media.slug_or_id)}}"
2d7b6bde
JW
30 class="button_action">Silence comments
31 </a>
32 {% endif %}
2d7b6bde 33{%- endif %}