forked from CGM_Public/pretix_original
Swap position of count and price in cart and cart-like tables
This commit is contained in:
@@ -38,12 +38,12 @@
|
|||||||
</dl>
|
</dl>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-3 col-xs-6 price">
|
|
||||||
{{ event.currency }} {{ line.price|floatformat:2 }}
|
|
||||||
</div>
|
|
||||||
<div class="col-md-2 col-xs-6 count">
|
<div class="col-md-2 col-xs-6 count">
|
||||||
{{ line.count }}
|
{{ line.count }}
|
||||||
</div>
|
</div>
|
||||||
|
<div class="col-md-3 col-xs-6 price">
|
||||||
|
{{ event.currency }} {{ line.price|floatformat:2 }}
|
||||||
|
</div>
|
||||||
<div class="col-md-3 col-xs-6 price">
|
<div class="col-md-3 col-xs-6 price">
|
||||||
<strong>{{ event.currency }} {{ line.total|floatformat:2 }}</strong>
|
<strong>{{ event.currency }} {{ line.total|floatformat:2 }}</strong>
|
||||||
{% if line.item.tax_rate %}
|
{% if line.item.tax_rate %}
|
||||||
|
|||||||
@@ -19,9 +19,6 @@
|
|||||||
</dl>
|
</dl>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-3 col-xs-6 price">
|
|
||||||
{{ event.currency }} {{ line.price|floatformat:2 }}
|
|
||||||
</div>
|
|
||||||
<div class="col-md-2 col-xs-6 count">
|
<div class="col-md-2 col-xs-6 count">
|
||||||
{% if editable %}
|
{% if editable %}
|
||||||
<form action="{% url "presale:event.cart.remove" event=event.slug organizer=event.organizer.slug %}"
|
<form action="{% url "presale:event.cart.remove" event=event.slug organizer=event.organizer.slug %}"
|
||||||
@@ -53,6 +50,9 @@
|
|||||||
</form>
|
</form>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
|
<div class="col-md-3 col-xs-6 price">
|
||||||
|
{{ event.currency }} {{ line.price|floatformat:2 }}
|
||||||
|
</div>
|
||||||
<div class="col-md-3 col-xs-6 price">
|
<div class="col-md-3 col-xs-6 price">
|
||||||
<strong>{{ event.currency }} {{ line.total|floatformat:2 }}</strong>
|
<strong>{{ event.currency }} {{ line.total|floatformat:2 }}</strong>
|
||||||
{% if line.item.tax_rate %}
|
{% if line.item.tax_rate %}
|
||||||
|
|||||||
Reference in New Issue
Block a user