s/items_list/_items_list/

This commit is contained in:
Christopher Neugebauer 2016-09-14 13:50:11 +10:00
parent 4f46c71528
commit 39d0947637
4 changed files with 5 additions and 5 deletions

View file

@ -13,11 +13,11 @@
cancel the invoice that added those items. You will need to re-add the items
from that invoice for the user to have them available again.</p>
{% include "registrasion/items_list.html" with items=paid %}
{% include "registrasion/_items_list.html" with items=paid %}
<h3>Cancelled Items</h3>
{% include "registrasion/items_list.html" with items=cancelled %}
{% include "registrasion/_items_list.html" with items=cancelled %}
<h3>Amend pending items</h3>

View file

@ -13,12 +13,12 @@
<p>You've selected the following items, which will be in your invoice when
you check out:<p>
{% include "registrasion/items_list.html" with items=pending %}
{% include "registrasion/_items_list.html" with items=pending %}
<p>You've already paid for the following items:</p>
{% items_purchased as purchased %}
{% if purchased %}
{% include "registrasion/items_list.html" with items=purchased suffix="(PAID)" %}
{% include "registrasion/_items_list.html" with items=purchased suffix="(PAID)" %}
{% endif %}

View file

@ -20,7 +20,7 @@
{% if items %}
<h3>Paid items</h3>
<p>You have already paid for the following items:</p>
{% include "registrasion/items_list.html" with items=items %}
{% include "registrasion/_items_list.html" with items=items %}
{% endif %}