From 123de1a15d6ac8349626ab4f6684158df8c2078c 2018-09-29 05:14:21 From: Tobias Date: 2018-09-29 05:14:21 Subject: [PATCH] Further FE improvements for checkout process --- diff --git a/pinaxcon/templates/registrasion/discount_list.html b/pinaxcon/templates/registrasion/discount_list.html index 74d4e0a1ff41312e8c10a90008ccb672defcc83b..7bee317cd3658b3462b19c159362a952b4340402 100644 --- a/pinaxcon/templates/registrasion/discount_list.html +++ b/pinaxcon/templates/registrasion/discount_list.html @@ -4,7 +4,7 @@

The following discounts and complimentary items are available to you. If you wish to take advantage of this offer, you must choose your items below. This discounts will be applied automatically when you check out.

{% regroup discounts by discount.description as discounts_grouped %} {% for discount_type in discounts_grouped %} -

{{ discount_type.grouper }}

+ {{ discount_type.grouper }} +
+
+ + {% endif %} - {% endif %} + {% available_credit as credit %} + {% if credit %} +
+

Credit

+

You have ${{ credit }} leftover from refunded invoices. This credit will be automatically applied to new invoices. Contact the conference organisers to for a refund to your original payment source.

+
+ {% endif %} - \ No newline at end of file + +{% endif %} {# user.attendee.completed_registration #} diff --git a/static/src/scss/app.scss b/static/src/scss/app.scss index 8477fa08b024646cc9e0f754a62075ddc6a70919..e383656929e1b8b2b6c542e47fd2ed68795d33da 100644 --- a/static/src/scss/app.scss +++ b/static/src/scss/app.scss @@ -431,4 +431,11 @@ a.a-img { #schedule-date { text-transform: capitalize; +} + +@media print +{ + .hidden-print { + display: none !important + } } \ No newline at end of file