Skip to content
This repository was archived by the owner on Apr 29, 2022. It is now read-only.

Commit acc1d93

Browse files
Clearer total due when buying (#1441)
* clarified cfp submission steps and moved AddSpeakerToTalkForm into talks.py file * Fixed tests to better reflect new changes * added i_accept_speaker_release to test_update_speaker_updated_speaker_name * bolded both steps for clarity * removed "of the speaker" from labels on the form * removed print statement * requirements upgrade * better handling of username auth * Making the 'total' message when buying a ticket clearer Co-authored-by: ethan <[email protected]> Co-authored-by: Ethan Carlsson <[email protected]>
1 parent 5cefa5c commit acc1d93

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

templates/conference/cart/_order_summary.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ <h4>Summary</h4>
3434
{% endfor %}
3535
</table>
3636

37-
<h4 style='margin-top: 2em'>Total: &euro; {{ order.total }}</h4>
37+
<br />
38+
<h4 style='margin-top: 2em'>Total Due: &euro; {{ order.total }}</h4>
3839
<h5>Including € {{ order.total_vat_amount }} VAT</h5>
3940

4041
<p style='margin-top: 2em'>All prices are gross and include <strong>0%</strong> Swedish VAT</p>

templates/conference/cart/step_2_pick_tickets.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@ <h4>{{ fare.name }}</h4>
7373
Discount for <em>{{ discount_code }}</em>: <span class='deducted'>- {{ calculation.total_discount|floatformat:2 }}</span> EUR
7474
</div>
7575
{% endif %}
76-
<h3 class='text-right'>TOTAL: <span id="total">{{ calculation.final_price|floatformat:2 }}</span> EUR</h3>
76+
<br />
77+
<h3 class='text-right'>TOTAL DUE: <span id="total">{{ calculation.final_price|floatformat:2 }}</span> EUR</h3>
7778

7879
<div class='text-right' style='margin-top: 2em'>
7980
<input type=submit name="{{ CartActions.buy_tickets }}" class='btn btn-outline-primary' value="Confirm order">

0 commit comments

Comments
 (0)