Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Commit

Permalink
fix: fixed css issue of refund detail page
Browse files Browse the repository at this point in the history
  • Loading branch information
zubair-ce07 committed Sep 13, 2023
1 parent 246cb50 commit 91acf2c
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions ecommerce/templates/oscar/dashboard/refunds/refund_detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,13 @@
{% endblock extrascripts %}

{% block breadcrumbs %}
<ul class="breadcrumb">
<li>
<a href="{% url 'dashboard:index' %}">{% trans "Dashboard" as tmsg %}{{ tmsg | force_escape }}</a>
</li>
<li>
<a href="{% url 'dashboard:refunds-list' %}">{% trans "Refunds" as tmsg %}{{ tmsg | force_escape }}</a>
</li>
<li class="active">#{{ refund.id }}</li>
</ul>
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="{% url 'dashboard:index' %}">{% trans "Dashboard" %}</a></li>
<li class="breadcrumb-item"><a href="{% url 'dashboard:refunds-list' %}">{% trans "Refunds" %}</a></li>
<li class="breadcrumb-item active" aria-current="page">#{{ refund.id }}</li>
</ol>
</nav>
{% endblock breadcrumbs %}

{% block headertext %}
Expand Down

0 comments on commit 91acf2c

Please sign in to comment.