From f6ef4c4f21f5c5378df06e6806a53d35e883505b Mon Sep 17 00:00:00 2001 From: Rico Hoppe Date: Thu, 7 Mar 2024 12:01:38 +0000 Subject: [PATCH] lists: added pages to un- subscribe from mailing lists --- src/templates/lists/subscribe.html | 27 +++++++++++++++++++++++++++ src/templates/lists/unsubscribe.html | 28 ++++++++++++++++++++++++++++ 2 files changed, 55 insertions(+) create mode 100644 src/templates/lists/subscribe.html create mode 100644 src/templates/lists/unsubscribe.html diff --git a/src/templates/lists/subscribe.html b/src/templates/lists/subscribe.html new file mode 100644 index 00000000..28e31e1e --- /dev/null +++ b/src/templates/lists/subscribe.html @@ -0,0 +1,27 @@ +{% extends "../base.html" %} + +{% block title %}{{ _("Subscribe To %s") }} % {{ list }}{% end block %} + +{% block container %} +
+
+
+
{{ _("Subscribe To %s") }} % {{ list }}
+ +
+

+ {{ _("Subscribe and you will receive emails concerning %s!") }} % {{ list }} +

+ + {% if list.description %} +

+ {{ list.description }} +

+ {% end %} +
+ + +
+
+
+{% end block %} diff --git a/src/templates/lists/unsubscribe.html b/src/templates/lists/unsubscribe.html new file mode 100644 index 00000000..b2d9a4d6 --- /dev/null +++ b/src/templates/lists/unsubscribe.html @@ -0,0 +1,28 @@ +{% extends "../base.html" %} + +{% block title %}{{ _("Unsubscribe from %s") }} % {{ list }}{% end block %} + +{% block container %} +
+
+
+
{{ _("We'd Be Sorry To See You Go") }}
+ +
+

+ {{ _("If you unsubscribe, you will no longer receive important emails concerning %s") }} % {{ list }} + {{ _("There are plenty of benefits to remain subscribed:") }} +

+ + {% if list.description %} +

+ {{ list.description }} +

+ {% end %} +
+ + +
+
+
+{% end block %} -- 2.47.3