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> <dt>{{ customer.name }}</dt>
<dd>{{ customer.email }}</dd> <dd>{{ customer.email }}</dd>
{% if customer.phone %} {% if customer.phone %}
<dd><spani class="fa fa-phone" aria-hidden="true"></span> {{ customer.phone }}</dd> <dd>{% icon "phone" %} {{ customer.phone }}</dd>
{% endif %} {% endif %}
<dd> <dd>
<ul class="list-inline"> <ul class="list-inline">

View File

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

View File

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