Price
{{ product.price|currency }}
Add to order
{% if user.is_authenticated %}
{% if product.is_available %}
{% else %}
This product is available from
{{ product.available_in.lower|date:"Y-m-d H:i" }}
{% endif %}
{% else %}
Signup or
login
to order this product
{% endif %}
{% endblock %}