{% extends "fpr/app_layout.html" %} {% load bootstrap_tags %} {% load i18n %} {% block title %}{{ block.super }} - {{ title }}{% endblock title %} {% block page_title %}{{ title }}{% endblock page_title %} {% block breadcrumbs %} {{ block.super }}
  • {% trans "Formats" %}
  • {% trans "Groups" %}
  • {{ title }}
  • {% endblock breadcrumbs %} {% block app_content %}
    {% include 'fpr/_sidebar.html' %}
    {% if group %}
    {% else %} {% endif %} {% csrf_token %} {{ form|as_bootstrap }}
    {% if group %}

    {% trans "Formats" %}

    {% trans "Create new format" %}

    {% if group_formats %} {% for format in group_formats %} {% endfor %}
    {% trans "Description" %} {% trans "Actions" %}
    {{ format.description }} {% trans "Edit" %}
    {% else %}

    {% blocktrans with description=group.description %} No formats exist for {{ description }}. {% endblocktrans %}

    {% endif %} {% endif %}
    {% endblock app_content %}