{% extends 'base/layout.html' %} {% load i18n %} {% block title %}{{ bundle.title }} — {% trans "Bundles" %}{% endblock %} {% block content %}

{{ bundle.title }}

{{ bundle_slug }}.json {% if bundle_status == 'applied' %} {% trans "Applied" %} {% elif bundle_status == 'partial' %} {% trans "Partial" %} {% else %} {% trans "Missing" %} {% endif %}

JSON
{% if bundle.description %}

{{ bundle.description }}

{% endif %}
{% trans "Types in bundle" %}
{% for t in types %} {% endfor %}
{% trans "Slug" %} {% trans "Label" %} {% trans "Fields" %}
{{ t.slug }} {{ t.verbose_name|default:t.slug }} {{ t.fields|length }}
{% trans "Show bundle JSON" %}
{{ bundle_json }}
{% trans "Change preview" %}
{% trans "Loading preview…" %}
{% endblock %} {% block javascript %} {{ block.super }} {% endblock %}