{% extends 'dashboard/layout.html' %} {% load i18n %} {% load bundle_dashboard_tags %} {% block body_class %}{{ block.super }} create-bundle-group{% endblock %} {% block title %} {% trans "Create new bundle group" %} | {% trans "Bundle Groups" %} | {{ block.super }} {% endblock %} {% block breadcrumbs %}
{% endblock %} {% block headertext %} {% trans "Bundle Group details: " %} {% if object.name %}{{ object.name }}{% else %}{{ object.pk }}{% endif %} {% endblock %} {% block dashboard_content %}{% trans "Name" %} | {{ object.name | default:"-" }} | {% trans "Edit" %} {% trans "Delete" %} |
---|---|---|
{% trans "Description" %} | {{ object.description | default:"-" }} | |
{% trans "Bundles" %} | {% for bundle in object.bundle_set.all %} {{ bundle }}{% if not forloop.last %},{% endif %} {% endfor %} | {% trans "Edit" %} |