{% extends 'shop_base.html' %} {% load bootstrap3 %} {% load commonmark %} {% load shop_tags %} {% block title %} {{ product.name }} | {{ block.super }} {% endblock %} {% block shop_content %}

{{ product.name }}

{{ product.description|trustedcommonmark }}

Price
{{ product.price|currency }}


{% if product.stock_amount and product.is_time_available %}

Availability
{% if product.left_in_stock > 0 %} {{ product.left_in_stock }} available
{% else %} Sold out.
{% endif %}


{% endif %} {% if product.is_stock_available %}

{% if already_in_order %}Update order{% else %}Add to order{% endif %}

{% if already_in_order %}

You already have this product in your order.

{% endif %} {% if user.is_authenticated %} {% if product.is_available %}
{% csrf_token %} {% bootstrap_form form %}
{% else %}

{% if product.is_old %} This product is not available anymore. {% elif product.is_upcoming %} This product is available from {{ product.available_in.lower|date:"Y-m-d H:i T" }} {% endif %}

{% endif %} {% else %} Signup or login to order this product {% endif %} {% endif %}
{% endblock %}