{% extends 'dashboard/layout.html' %} {% load i18n %} {% block title %} {% blocktrans with title=product.get_title %} Delete {{ title}}? {% endblocktrans %} | {{ block.super }} {% endblock %} {% block body_class %}{{ block.super }} create-page{% endblock %} {% block breadcrumbs %} {% endblock %} {% block header %} {% endblock header%} {% block dashboard_content %}

{% trans "Delete product" %}

{% csrf_token %} {% blocktrans with title=product.title %}

Delete product {{ title }} - are you sure?

{% endblocktrans %} {% if product.is_group %}

{% trans "This will also delete the following variant products:" %}

{% endif %}
{% trans "or" %} {% trans "cancel" %}
{% endblock %}