Files @ 1759a07630a8
Branch filter:

Location: symposion_app/pinaxcon/templates/registrasion/emails/invoice_created/message.html

Nick Seidenman (N6)
A few mods to be able to use the runserver site for debugging. We'll back these out once the real
(via apache) site is up and running.
{% load i18n %}

{% if invoice.is_unpaid %}
<p>
  <strong>NOTICE:</strong> The below invoice is automatically generated, and
  will be voided if you amend your selections before payment, or if discounts
  or products contained in the invoice become unavailable. The products and
  discounts are only reserved until the invoice due time, please pay before then
  to guarantee your selection. Late payments are accepted only if the products
  and discounts are still available.
</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>
  {% if invoice.is_unpaid %}
    --  You can give this URL to your accounts department to pay for your selections.
  {% endif %}
</p>

<hr />

{% include "registrasion/_invoice_details.html" %}