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