change ol to ul

This commit is contained in:
Richard Schreiber
2024-11-21 11:21:56 +01:00
parent ce2e94b8d5
commit b1fbf4d5b7
2 changed files with 4 additions and 4 deletions

View File

@@ -14,7 +14,7 @@
</div> </div>
<div class="panel-body"> <div class="panel-body">
{% if memberships %} {% if memberships %}
<ol class="full-width-list alternating-rows"> <ul class="full-width-list alternating-rows">
{% for m in memberships %} {% for m in memberships %}
<li class="row"> <li class="row">
<dl> <dl>
@@ -69,7 +69,7 @@
</dl> </dl>
</li> </li>
{% endfor %} {% endfor %}
</ol> </ul>
{% else %} {% else %}
<p class="text-center">{% trans "You dont have any memberships in your account yet." %}</p> <p class="text-center">{% trans "You dont have any memberships in your account yet." %}</p>
{% endif %} {% endif %}

View File

@@ -14,7 +14,7 @@
</div> </div>
<div class="panel-body"> <div class="panel-body">
{% if orders %} {% if orders %}
<ol class="full-width-list alternating-rows"> <ul class="full-width-list alternating-rows">
{% for o in orders %} {% for o in orders %}
<li class="row"> <li class="row">
<dl> <dl>
@@ -66,7 +66,7 @@
</dl> </dl>
</li> </li>
{% endfor %} {% endfor %}
</ol> </ul>
{% else %} {% else %}
<p class="text-center">{% trans "You dont have any orders in your account yet." %}</p> <p class="text-center">{% trans "You dont have any orders in your account yet." %}</p>
{% endif %} {% endif %}