2016-05-19 09:19:51 +00:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
2016-05-30 16:54:40 +00:00
|
|
|
<div class="row">
|
2016-05-30 17:58:58 +00:00
|
|
|
<div class="col-md-12">
|
2016-05-30 16:54:40 +00:00
|
|
|
<div class="pull-right">
|
|
|
|
{% if user.is_authenticated and user.orders.exists %}
|
|
|
|
<a href="{% url 'shop:order_list' %}" class="btn btn-grey">Previous orders</a>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2016-05-19 09:19:51 +00:00
|
|
|
{% block shop_content %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block footer %}
|
|
|
|
<a href="{% url 'shop:privacy-policy' %}">Privacy Policy</a> |
|
|
|
|
<a href="{% url 'shop:return-policy' %}">Return Policy</a> |
|
|
|
|
<a href="{% url 'shop:general-terms' %}">General Terms & Conditions</a>
|
|
|
|
{% endblock %}
|