Changeset - 3d534bcf422e
[Not reviewed]
0 2 0
Christopher Neugebauer - 7 years ago 2016-09-13 09:00:07
chrisjrn@gmail.com
Invoice and credit note templates now use invoice.recipient.

Fixes #3.
2 files changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
pinaxcon/templates/registrasion/_invoice_details.html
Show inline comments
...
 
@@ -10,7 +10,7 @@
 
    {% if not invoice.is_void %}
 
      <li><strong>Due:</strong> {{ invoice.due_time|date:"DATETIME_FORMAT"}}</li>
 
    {% endif %}
 
    <li><strong>Recipient:</strong> {{ invoice_user.attendee.attendeeprofilebase.invoice_recipient|linebreaksbr}}</li>
 
    <li><strong>Recipient:</strong> {{ invoice.recipient|linebreaksbr}}</li>
 
  </ul>
 
{% endwith %}
 

	
pinaxcon/templates/registrasion/credit_note.html
Show inline comments
...
 
@@ -8,7 +8,7 @@
 
{% with note_user=credit_note.invoice.user %}
 
  <ul>
 
    <li><strong>Number:</strong> {{ credit_note.id }}
 
    <li><strong>Attention:</strong> {{ credit_note.invoice.user.attendee.attendeeprofilebase.invoice_recipient }}</li>
 
    <li><strong>Attention:</strong> {{ credit_note.invoice.recipient }}</li>
 
    <li><strong>Value:</strong> {{ credit_note.value }}</li>
 
    <li><strong>Status:</strong> {{ credit_note.status }}</li>
 
  </ul>
0 comments (0 inline, 0 general)