From dd2bdeda7426ff35a043a2221ec2ee5b57951aa2 2017-01-09 06:44:39 From: Christopher Neugebauer Date: 2017-01-09 06:44:39 Subject: [PATCH] Renames nag_unpaid.html to invoice_mailout.html --- diff --git a/pinaxcon/templates/registrasion/invoice_mailout.html b/pinaxcon/templates/registrasion/invoice_mailout.html new file mode 100644 index 0000000000000000000000000000000000000000..ac76c2e8573ce6b1c15fdf9d23a45c0fef385d97 --- /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 7ef3eed505a95d2c833189131eeac28e5f644f1d..0000000000000000000000000000000000000000 --- 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 %}