Changeset - f629654546a8
[Not reviewed]
0 1 2
Christopher Neugebauer - 6 years ago 2017-10-03 01:48:29
chrisjrn@gmail.com
Invoice bits
3 files changed with 41 insertions and 1 deletions:
0 comments (0 inline, 0 general)
pinaxcon/templates/registrasion/dashboard_widget.html
Show inline comments
 
new file 100644
 
{% extends "registrasion/dashboard_widget_.html" %}
 

	
 
{% comment %}
 
  Blocks that you can override:
 

	
 
  - heading_actions
 
  - heading
 
  - panel_content
 
  - available_credit
 
  - invoices_heading
 
  - invoice_item_prefix
 

	
 
{% endcomment %}
 

	
 
{% block heading %}
 
  Tickets
 
{% endblock %}
 

	
 
{% block invoices_heading %}
 
  Statements & Receipts
 
{% endblock %}
 

	
 
{% block invoice_item_prefix %}
 
  {% if invoice.is_paid %}
 
    Receipt
 
  {% else %}
 
    Statement
 
  {% endif %}
 
{% endblock %}
pinaxcon/templates/registrasion/invoice/details.html
Show inline comments
...
 
@@ -37,7 +37,7 @@
 

	
 
{% block contact_info %}
 
  <p>Direct inquiries to <a href="mailto:spam@northbaypython.org">spam@northbaypython.org</a></p>
 
  <p>North Bay Python is a member project of <a href="https://sfconservancy.org">Software Freedom Conservancy</a>, a 501(c)(3) public charity registered in New York.</p>
 
  <p>North Bay Python is run by North Bay and Bay Area locals, as a member project of <a href="https://sfconservancy.org">Software Freedom Conservancy</a>, a 501(c)(3) public charity registered in New York.</p>
 

	
 
  <strong>Mailing Address</strong>
 
  <address>
pinaxcon/templates/registrasion/invoice/unpaid_notice.html
Show inline comments
 
new file 100644
 
<p><strong>NOTICE:</strong> The below statement is automatically generated, and will be voided if you amend your registration before payment, or if discounts or products contained in the statement become unavailable. The items and discounts are only reserved until the invoice due time.</p>
 

	
 
{% url "invoice_access" invoice.user.attendee.access_code as access_url %}
 
{% url "invoice" invoice.id invoice.user.attendee.access_code as invoice_url %}
 

	
 
<p>You can send the following links to your accounts department to pay for your registration:</p>
 

	
 
<ul>
 
  <li>{{ current_host|add:access_url|urlize }} &ndash; your most recent statement or receipt</li>
 
  <li>{{ current_host|add:invoice_url|urlize }} &ndash; this statement, even if it becomes void.</li>
 
</ul>
0 comments (0 inline, 0 general)