{# vim: set ts=2 et sts=2 sw=2: #} {% extends "questions/base.html" %} {% if success %} {% set title = _('You have been unsubscribed.') %} {% else %} {% set title = _('There was a problem unsubscribing.') %} {% endif %} {% set classes = 'questions' %} {% block content %}
{% if success %} {% trans question_title=question.title %} You will no longer receive email updates for this question: {{ question_title }} {% endtrans %} {% else %} {% trans question_title=question.title, question_url=question.get_absolute_url() %} We could not unsubscribe you from this question: {{ question_title }}. Please make sure you copied and pasted the unsubscribe link correctly. {% endtrans %} {% endif %}