{% 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 %}

{% trans "Search Bundle Groups" %}

{% for name, value in request.GET.items %} {% if name not in form.fields %} {% endif %} {% endfor %} {% include "dashboard/partials/form_fields_inline.html" with form=form %} {% trans "Clear Search" %}
{% 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 %}