From dd2bdeda7426ff35a043a2221ec2ee5b57951aa2 Mon Sep 17 00:00:00 2001 From: Christopher Neugebauer Date: Mon, 9 Jan 2017 17:44:39 +1100 Subject: [PATCH] Renames nag_unpaid.html to invoice_mailout.html --- .../registrasion/invoice_mailout.html | 31 +++++++++++++++++++ .../templates/registrasion/nag_unpaid.html | 16 ---------- 2 files changed, 31 insertions(+), 16 deletions(-) create mode 100644 pinaxcon/templates/registrasion/invoice_mailout.html delete mode 100644 pinaxcon/templates/registrasion/nag_unpaid.html diff --git a/pinaxcon/templates/registrasion/invoice_mailout.html b/pinaxcon/templates/registrasion/invoice_mailout.html new file mode 100644 index 0000000..ac76c2e --- /dev/null +++ b/pinaxcon/templates/registrasion/invoice_mailout.html @@ -0,0 +1,31 @@ +{% extends "site_base.html" %} +{% load bootstrap %} +{% load registrasion_tags %} + +{% block body %} + +

Send reminder e-mails

+ +
+ {% csrf_token %} + {{ form | bootstrap}} +
+ +
+ +{% if emails %} +

Previews

+ + {% for email in emails %} +
+
From
{{ email.from_email }}
+
To
{{ email.recipient_list|join:", " }}
+
Subject
{{ email.subject }}
+
Body
{{ email.body }}
+
+
+ {% endfor %} + +{% endif %} + +{% endblock %} diff --git a/pinaxcon/templates/registrasion/nag_unpaid.html b/pinaxcon/templates/registrasion/nag_unpaid.html deleted file mode 100644 index 7ef3eed..0000000 --- a/pinaxcon/templates/registrasion/nag_unpaid.html +++ /dev/null @@ -1,16 +0,0 @@ -{% extends "site_base.html" %} -{% load bootstrap %} -{% load registrasion_tags %} - -{% block body %} - -

Send reminder e-mails

- -
- {% csrf_token %} - {{ form | bootstrap}} -
- -
- -{% endblock %}