{% extends "core/base.jinja" %} {# if the template context has the `object_name` variable, then this one will be used in the page title, instead of the result of `str(object)` #} {% if object and not object_name %} {% set object_name=object %} {% endif %} {% block title %} {% if object_name %} {% trans name=object_name %}Edit {{ name }}{% endtrans %} {% else %} {% trans %}Save{% endtrans %} {% endif %} {% endblock %} {% block content %} {% if object_name %}

{% trans name=object_name %}Edit {{ name }}{% endtrans %}

{% else %}

{% trans %}Save{% endtrans %}

{% endif %} {% if messages %}
{% for message in messages %} {% if message.level_tag == "success" %} {{ message }} {% endif %} {% endfor %}
{% endif %}
{% csrf_token %} {{ form.as_p() }}

{% endblock %}