{% extends "management/base.html" %} {% load i18n lucide static ui %} {% block heading %}{% if update_view %}{% blocktrans %}Edit {{ object }}{% endblocktrans %}{% else %}{% trans "New news item" %}{% endif %}{% endblock heading %} {% block panel %}
{% csrf_token %} {% for error in form.non_field_errors %}
{{ error }}
{% endfor %} {% if not update_view %}

{% trans "Photos can be added once the news item is created." %}

{% endif %}
{% for field in form %} {% form_field field %} {% endfor %}
{% lucide "arrow-left" size=16 %} {% trans "Cancel" %}
{% endblock panel %} {% block extra_body %} {% endblock extra_body %}