fix code style

This commit is contained in:
Richard Schreiber
2024-11-22 13:24:24 +01:00
parent 6fc62dcaf5
commit 1a39f209e9
3 changed files with 4 additions and 4 deletions

View File

@@ -12,7 +12,7 @@
<dt>{{ customer.name }}</dt>
<dd>{{ customer.email }}</dd>
{% if customer.phone %}
<dd><spani class="fa fa-phone" aria-hidden="true"></span> {{ customer.phone }}</dd>
<dd>{% icon "phone" %} {{ customer.phone }}</dd>
{% endif %}
<dd>
<ul class="list-inline">

View File

@@ -23,7 +23,7 @@
<dt class="sr-only">{% trans "Order" %}</dt>
<dd><strong>
<a href="{% abseventurl o.event "presale:event.order" order=o.code secret=o.secret %}" target="_blank">
<i class="fa fa-shopping-cart" aria-hidden="true"></i>
{% icon "shopping-cart" %}
{{ o.code }}</a>
</strong>
{% if o.customer_id != customer.pk %}
@@ -66,7 +66,7 @@
<dd class="text-right">
<a href="{% abseventurl o.event "presale:event.order" order=o.code secret=o.secret %}"
target="_blank">
<span class="fa fa-list-ul" aria-hidden="true"></span>
{% icon "list-ul" %}
{% trans "Details" %}
</a></dd>
</div>

View File

@@ -25,7 +25,7 @@
<p class="blank-after">
<a href="{% abseventurl request.organizer "presale:organizer.customer.profile.delete" id=ap.id %}"
class="btn btn-danger btn-sm">
{% icon "trash" %}
{% icon "trash" %}
{% trans "Delete" %}
</a>
</p>