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 %}