{% extends "base.html" %} {% load i18n %} {% load tags %} {% block title %} {% if item %} {{ item.title }} – {% trans "Edit item" %} {% else %} {% trans "New item" %} {% endif %} – {{ block.super }} {% endblock %} {% block content %}

{% if item %} {% trans "Edit item" %} {% else %} {% trans "New item" %} {% endif %} {% trans "Back to overview" %}

{% if item.related_sid %} {% blocktrans with type=item.get_related_type|trans name=item.get_related_slide %}Edit {{ type }} {{ name }}{% endblocktrans %} {% endif %}

{% csrf_token %} {% include "form.html" %}

{% include "formbuttons_saveapply.html" %} {% trans 'Cancel' %}

* {% trans "required" %}
{% endblock %}