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

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

{% if item.content_object %} {% blocktrans with type=item.content_type.name|trans name=item.content_object %}Edit {{ type }} {{ name }}{% endblocktrans %} {% endif %}

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

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

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