{% extends "base.html" %} {% load compress %} {% load i18n %} {% load crispy_forms_tags %} {% load translations %} {% load icons %} {% load static %} {% block extra_script %} {% compress js %} {% endcompress %} {% endblock %} {% block extra_meta %} {% endblock %} {% block breadcrumbs %}
  • {{ object.component.project }}
  • {% if object.component.slug != "-" %} {% include "snippets/component-breadcrumb.html" with object=object.component %} {% endif %} {% include "snippets/translation-breadcrumb.html" %}
  • {% trans "Zen" %}
  • {% endblock %} {% block content_class %}js-editor{% endblock %} {% block content %} {% if object.component.slug == "-" %} {% for component in project.component_set.all %} {% include "snippets/component/state.html" with object=component %} {% endfor %} {% else %} {% include "snippets/component/state.html" with object=object.component %} {% endif %}
    {% icon "close.svg" %} {% trans "Exit Zen" %} {% icon "settings.svg" %}
    {% crispy search_form %}
    {% include 'zen-units.html' %}
    {% loading_icon "next" %}
    {% endblock %}