Changeset - dd2bdeda7426
[Not reviewed]
1 0 1
Christopher Neugebauer - 7 years ago 2017-01-09 06:44:39
chrisjrn@gmail.com
Renames nag_unpaid.html to invoice_mailout.html
2 files changed with 31 insertions and 16 deletions:
0 comments (0 inline, 0 general)
pinaxcon/templates/registrasion/invoice_mailout.html
Show inline comments
 
new file 100644
 
{% extends "site_base.html" %}
 
{% load bootstrap %}
 
{% load registrasion_tags %}
 

	
 
{% block body %}
 

	
 
<h2>Send reminder e-mails</h2>
 

	
 
<form method="POST">
 
  {% csrf_token %}
 
  {{ form | bootstrap}}
 
  <br/>
 
  <input type="submit">
 
</form>
 

	
 
{% if emails %}
 
  <h3>Previews</h3>
 

	
 
  {% for email in emails %}
 
    <dl>
 
      <dt>From</dt><dd>{{ email.from_email }}</dd>
 
      <dt>To</dt><dd>{{ email.recipient_list|join:", " }}</dd>
 
      <dt>Subject</dt><dd>{{ email.subject }}</dd>
 
      <dt>Body</dt><dd><pre>{{ email.body }}</pre></dd>
 
    </dl>
 
    <hr />
 
  {% endfor %}
 

	
 
{% endif %}
 

	
 
{% endblock %}
pinaxcon/templates/registrasion/nag_unpaid.html
Show inline comments
 
deleted file
0 comments (0 inline, 0 general)