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

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

Name {{ object.name | default:"-" }}
Description {{ object.description | default:"-" }}
Bundles
    {% for bundle in object.bundle_set.all %}
  • {{ bundle.name }}
  • {% endfor %}
{% include 'dashboard/partials/form_fields.html' with form=form %}
{% trans "Cancel" %}
{% endblock dashboard_content %}