diff options
author | lxf <sng@luxagraf.net> | 2021-11-06 09:42:47 -0400 |
---|---|---|
committer | lxf <sng@luxagraf.net> | 2021-11-06 09:42:47 -0400 |
commit | d9f51299809bfb6b3ac589b7c42016d0ef240299 (patch) | |
tree | aa5f945e82fdbf1b66aca82fe5122f6ff5a12eb9 /design/templates/newsletter/subscription_unsubscribe.html | |
parent | dde9914dbbc6cda18ba59024065727c8dc6bcdf4 (diff) |
moved templates to top level directory
Diffstat (limited to 'design/templates/newsletter/subscription_unsubscribe.html')
-rw-r--r-- | design/templates/newsletter/subscription_unsubscribe.html | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/design/templates/newsletter/subscription_unsubscribe.html b/design/templates/newsletter/subscription_unsubscribe.html deleted file mode 100644 index 022ba4b..0000000 --- a/design/templates/newsletter/subscription_unsubscribe.html +++ /dev/null @@ -1,25 +0,0 @@ -{% extends "newsletter/common.html" %} - -{% load i18n %} - -{% block title %}{% trans "Newsletter unsubscribe" %}{% endblock title %} - -{% block body %} - <h1>{% trans "Newsletter unsubscribe" %} {{ newsletter.title }}</h1> - - {% if error %} - <p>{% trans "Due to a technical error we were not able to submit your confirmation email. This could be because your email address is invalid." %}</p> - - {% comment %} Replace the the following dummy with a valid email address and remove this comment. - - <p>{% trans "If the error persists, please don't hesitate to contact us at the following email address:" %} <a href="mailto:info@foobar.com">info@foobar.com</a></p> - - {% endcomment %} - {% else %} - <form enctype="multipart/form-data" method="post" action="."> - {% csrf_token %} - {{ form.as_p }} - <p><input id="id_submit" name="submit" value="{% trans "Unsubscribe" %}" type="submit" /></p> - </form> - {% endif %} -{% endblock body %} |