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

View File

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