{% extends "backoffice/base.html" %} {% load i18n %} {% load static %} {% load widget_tweaks %} {% block content %} {% include "backoffice/assembly_edit_header.html" %} {% if form.errors %}
{{ form.errors }}
{% endif %} {% with links=assembly.linked_assemblies %}
{% trans "Assembly__edit__link__add" %}

{% trans "Assembly__edit__links__intro" %}

{% csrf_token %}
{% trans "Assembly__edit__links" %}
{% if links|length > 0 %}
    {% for link in links %}
  • {{ link.name }} (Slug: {{ link.slug }}) {% csrf_token %}
  • {% endfor %}
{% else %} {% trans "no_entries" %} {% endif %}
{% endwith %} {% endblock content %}