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

Commit

Permalink
fix: css issues in line detail page
Browse files Browse the repository at this point in the history
  • Loading branch information
zubair-ce07 committed Sep 13, 2023
1 parent 91acf2c commit 7d330d5
Showing 1 changed file with 9 additions and 12 deletions.
21 changes: 9 additions & 12 deletions ecommerce/templates/oscar/dashboard/orders/line_detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,15 @@
{% endblock %}

{% 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:order-list' %}">{% trans "Orders" as tmsg %}{{ tmsg | force_escape }}</a>
</li>
<li>
<a href="{% url 'dashboard:order-detail' number=line.order.number %}">#{{ line.order.number }}</a>
</li>
<li class="active">{% filter force_escape %}{% blocktrans with id=line.id %}Line #{{ id }}{% endblocktrans %}{% endfilter %}</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:order-list' %}">{% trans "Orders" %}</a></li>
<li class="breadcrumb-item"><a href="{% url 'dashboard:order-detail' number=line.order.number %}">#{{ line.order.number }}</a></li>

<li class="breadcrumb-item active" aria-current="page">{% filter force_escape %}{% blocktrans with id=line.id %}Line #{{ id }}{% endblocktrans %}{% endfilter %}</li>
</ol>
</nav>
{% endblock %}

{% block headertext %}
Expand Down

0 comments on commit 7d330d5

Please sign in to comment.