{% extends 'dashboard/layout.html' %} {% load i18n %} {% load bundle_dashboard_tags %} {% block title %} {% trans "Bundle Groups" %} | {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block header %} {% endblock header %} {% block dashboard_content %} {% if object_list %} {% for object in object_list %} {% endfor %} {% else %} {% endif %}
{% trans "Name" %} {% trans "Description" %}
{{ object.name | default:"-" }} {{ object.description | default:"-" }}
{% trans "No bundle groups found." %}
{% include "dashboard/partials/pagination.html" %} {% endblock dashboard_content %}