Changeset - e34347ecac24
[Not reviewed]
0 2 2
Christopher Neugebauer - 8 years ago 2016-08-21 23:30:21
chrisjrn@gmail.com
Adds invoice_updated templates too
4 files changed with 6 insertions and 3 deletions:
0 comments (0 inline, 0 general)
pinaxcon/templates/registrasion/emails/invoice_created/message.html
Show inline comments
 
{% load i18n %}
 

	
 
<p>The following invoice was created as part of an attempt to register at (conference name). Please ensure it is paid by the due date.</p>
 

	
 
{% if invoice.is_unpaid %}
 
<p><strong>NOTICE:</strong> The below invoice is automatically generated, and will be voided
 
  if you amend your registration before payment, or if discounts or products contained in the
 
  invoice become unavailable. The items and discounts are only reserved until
 
  the invoice due time.</p>
 

	
 
<p>Please ensure this invoice is paid by the due date.</p>
 

	
 
{% endif %}
 

	
 
{% url "invoice" invoice.id invoice.user.attendee.access_code as access_url %}
 
<p>This invoice is available at <a href="http://{{ current_site }}{{ access_url }}">http://{{ current_site }}{{ access_url }}</a> --
 
  You can give this URL to your accounts department to pay your registration.
 
</p>
pinaxcon/templates/registrasion/emails/invoice_created/subject.txt
Show inline comments
 
{% load i18n %}{% blocktrans %}Invoice {{invoice.id}} from (CONFERENCE_COMPANY){% endblocktrans %}
 
{% load i18n %}Invoice {{ invoice.id }} from (CONFERENCE_COMPANY)
pinaxcon/templates/registrasion/emails/invoice_updated/message.html
Show inline comments
 
new file 100644
 
{% include "registrasion/emails/invoice_created/message.html" %}
pinaxcon/templates/registrasion/emails/invoice_updated/subject.txt
Show inline comments
 
new file 100644
 
{% load i18n %}{{ invoice.get_status_display }} -- Invoice {{ invoice.id }} from (CONFERENCE_COMPANY)
0 comments (0 inline, 0 general)