{% load basket_tags %} {% load display_tags %} {% load i18n %} {% load purchase_info_tags %} {% load ocyan_main %} {% basket_form request product 'multiple' as basket_form %} {% purchase_info_for_product request product as session %}
{% block availability_message %}
{{session.availability.message}}
{% endblock %} {% if session.availability.is_available_to_buy %}
{% csrf_token %}
{% include "oscar/partials/basket_form_fields.html" with form=basket_form class=ok %}
{% iffeature "wishlists" %} {% esi_fragment "oscar/catalogue/partials/add_to_wishlist.html" with sessionid=True name="wishlist" user=user product=product csrf_token=csrf_token only %} {% endiffeature %}
{% else %} {% if not has_active_alert %}
{% csrf_token %}
{% trans "You can get an email alert when this product is back in stock." %} {% include "oscar/partials/form_fields.html" with form=alert_form %}
{% iffeature "wishlists" %} {% esi_fragment "oscar/catalogue/partials/add_to_wishlist.html" with sessionid=True name="wishlist" user=user product=product csrf_token=csrf_token only %} {% endiffeature %}
{% else %}
{% trans "You have an active stock alert for this product." %}
{% iffeature "wishlists" %} {% esi_fragment "oscar/catalogue/partials/add_to_wishlist.html" with sessionid=True name="wishlist" user=user product=product csrf_token=csrf_token only %} {% endiffeature %}
{% endif %} {% endif %}