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

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

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

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

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