{% extends 'dashboard/layout.html' %} {% load i18n %} {% load bundle_dashboard_tags %} {% block body_class %}{{ block.super }} delete-bundle{% endblock %} {% block title %} {% trans "Delete bundle" %} | {% trans "Bundles" %} | {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block headertext %} {% trans "Delete bundle: " %} {% if bundle.name %}{{ bundle.name }}{% else %}{{ bundle.pk }}{% endif %} {% endblock %} {% block dashboard_content %}
{% csrf_token %}

{% trans "Delete bundle: " %} {% if bundle.name %}{{ bundle.name }}{% else %}{{ bundle.pk }}{% endif %}

Name {{ bundle.name | default:"-" }}
Description {{ bundle.description | default:"-" }}
Triggering Products {% grouped_product_list bundle.triggering_products %}
Suggested Products {% grouped_product_list bundle.suggested_products %}
{% include 'dashboard/partials/form_fields.html' with form=form %}
{% trans "Cancel" %}
{% endblock dashboard_content %}