Adds a clearer “check out and pay” wording to buttons on the dashboard.
Fixes #8.
This commit is contained in:
parent
fc842b7c30
commit
4ecd4d0aa4
1 changed files with 4 additions and 1 deletions
|
@ -109,7 +109,7 @@
|
||||||
{% items_pending as pending %}
|
{% items_pending as pending %}
|
||||||
{% if pending %}
|
{% if pending %}
|
||||||
<a href="{% url "checkout" %}" class="btn btn-xs btn-default">
|
<a href="{% url "checkout" %}" class="btn btn-xs btn-default">
|
||||||
<i class="fa fa-credit-card"></i> Pay your registration
|
<i class="fa fa-credit-card"></i> Check out and pay
|
||||||
</a>
|
</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -130,6 +130,9 @@
|
||||||
{% if pending %}
|
{% if pending %}
|
||||||
<h5>Items pending payment</h5>
|
<h5>Items pending payment</h5>
|
||||||
{% include "registrasion/items_list.html" with items=pending %}
|
{% include "registrasion/items_list.html" with items=pending %}
|
||||||
|
<p><a href="{% url "checkout" %}" class="btn btn-xs btn-default">
|
||||||
|
<i class="fa fa-credit-card"></i>
|
||||||
|
Check out and pay for these items.</a></p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% items_purchased as purchased %}
|
{% items_purchased as purchased %}
|
||||||
{% if purchased %}
|
{% if purchased %}
|
||||||
|
|
Loading…
Reference in a new issue