{% extends "dashboard/base.html" %} {% load i18n %} {% block title %}{% trans "Edit" %}{% endblock %} {% block content %}

{% trans "Edit" %}

{% trans "Update the details and save your changes." %}
{% trans "Back" %}
{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %} {{ form.media }}
{% for field in form %} {% include "partials/_field.html" with field=field col_class="col-12" %} {% endfor %}
{% trans "Cancel" %}
{% if object %} {% trans "Delete" %} {% endif %}
{% endblock %}