diff --git a/pinaxcon/templates/registrasion/_invoice_details.html b/pinaxcon/templates/registrasion/_invoice_details.html
index d97c5df4..aac6070e 100644
--- a/pinaxcon/templates/registrasion/_invoice_details.html
+++ b/pinaxcon/templates/registrasion/_invoice_details.html
@@ -25,51 +25,55 @@
This invoice has been issued as a result of an application to attend {% conference_name %}. All amounts are in New Zealand Dollars (NZD).
-
-
- Description |
- Quantity |
- Price/Unit |
- Total |
-
- {% for line_item in invoice.lineitem_set.all %}
+
+
- {{ line_item.description }} |
- {{ line_item.quantity }} |
- ${{ line_item.price }} |
- ${{ line_item.total_price }} |
+ Description |
+ Quantity |
+ Price/Unit |
+ Total |
- {% endfor %}
+
+
+ {% for line_item in invoice.lineitem_set.all %}
+
+ {{ line_item.description }} |
+ {{ line_item.quantity }} |
+ ${{ line_item.price }} |
+ ${{ line_item.total_price }} |
+
+ {% endfor %}
- |
+ |
-
- Includes 15% New Zealand Goods and Services Tax |
- ${{ invoice.value|gst}} |
-
-
-
- Total |
- ${{ invoice.value }} |
-
-
- |
-
-
- Total payments received: |
- ${{ invoice.total_payments }} |
-
- {% if invoice.is_unpaid or invoice.is_paid %}
- Balance due: |
- ${{ invoice.balance_due }} |
+ Includes 15% New Zealand Goods and Services Tax |
+ ${{ invoice.value|gst}} |
- {% endif %}
+
+
+ Total |
+ ${{ invoice.value }} |
+
+
+ |
+
+
+ Total payments received: |
+ ${{ invoice.total_payments }} |
+
+ {% if invoice.is_unpaid or invoice.is_paid %}
+
+ Balance due: |
+ ${{ invoice.balance_due }} |
+
+ {% endif %}
+
{% if invoice.paymentbase_set.all %}
-
- Payments received
+
+ Payments received
{% include "registrasion/payment_list.html" with payments=invoice.paymentbase_set.all %}
{% endif %}
diff --git a/pinaxcon/templates/registrasion/payment_list.html b/pinaxcon/templates/registrasion/payment_list.html
index 7c2edbc3..ac5cd9b4 100644
--- a/pinaxcon/templates/registrasion/payment_list.html
+++ b/pinaxcon/templates/registrasion/payment_list.html
@@ -1,16 +1,20 @@
{% if payments %}
-
- Payment time |
- Reference |
- Amount |
-
- {% for payment in payments %}
+
- {{payment.time}} |
- {{payment.reference}} |
- {{payment.amount}} |
+ Payment time |
+ Reference |
+ Amount |
- {% endfor %}
+
+
+ {% for payment in payments %}
+
+ {{payment.time}} |
+ {{payment.reference}} |
+ {{payment.amount}} |
+
+ {% endfor %}
+
{% endif %}
diff --git a/static/src/scss/app.scss b/static/src/scss/app.scss
index efb46cba..ac0fc3a2 100644
--- a/static/src/scss/app.scss
+++ b/static/src/scss/app.scss
@@ -459,6 +459,49 @@ hr {
.hidden-print {
display: none !important
}
+
+ .page-break {
+ page-break-after: always;
+ }
+
+ .jumbotron {
+ font-size: 8pt;
+ padding: 0;
+ background-color: white;
+ border: none;
+ color: #000;
+
+ h3 {
+ margin-top: 4rem;
+ }
+
+ h4 {
+ margin-top: 2rem;
+ }
+
+ table {
+ margin-top: 2rem;
+ border: none !important;
+
+ th, td {
+ padding: 0.75rem 0;
+ border: none;
+ }
+
+ thead th {
+ border-bottom: 1px solid black;
+ }
+
+ th[colspan="4"] {
+ display: none;
+
+ }
+ }
+ }
+
+ footer {
+ display: none !important;
+ }
}
.card-group.key-dates {