34 lines
1 KiB
HTML
34 lines
1 KiB
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<ol class="breadcrumb">
|
|
<li><a href="{% url 'shop:index' %}">Shop</a></li>
|
|
{% if product %}
|
|
<li><a href="{% url 'shop:index' %}?category={{product.category.slug}}">{{ product.category }}</a></li>
|
|
<li class="active">{{ product.name }}</li>
|
|
{% elif current_category %}
|
|
<li class="active">{{ current_category }}</li>
|
|
{% endif %}
|
|
{% if user.is_authenticated and user.orders.exists %}
|
|
{% if has_tickets %}
|
|
<li class="pull-right"><a href="{% url 'shop:ticket_list' %}">Tickets</a></li>
|
|
{% endif %}
|
|
<li class="pull-right no-before"><a href="{% url 'shop:order_list' %}">Orders</a></li>
|
|
{% if user.creditnotes.exists %}
|
|
<li class="pull-right"><a href="{% url 'shop:creditnote_list' %}">Credit Notes</a></li>
|
|
{% endif %}
|
|
{% endif %}
|
|
</ol>
|
|
</div>
|
|
</div>
|
|
|
|
{% block shop_content %}
|
|
|
|
{% endblock %}
|
|
|
|
{% endblock %}
|
|
|