subscription_activate.html 540 B

123456789101112131415
  1. {% extends "newsletter/common.html" %}
  2. {% load i18n %}
  3. {% block title %}{% trans "Newsletter" %} {{ newsletter.title }} {{ action }} {% trans "activate" %}{% endblock title %}
  4. {% block body %}
  5. <h1>{% trans "Newsletter" %} {{ newsletter.title }} {{ action }} {% trans "activate" %}</h1>
  6. <form enctype="multipart/form-data" method="post" action=".">
  7. {% csrf_token %}
  8. {{ form.as_p }}
  9. <p><input id="id_submit" name="submit" value="{% trans "Activate" %}" type="submit" /></p>
  10. </form>
  11. {% endblock body %}