{% extends "base.html" %} {% load i18n %} {% load crispy_forms_filters %} {% block title %} {# Check if an 'object' exists in the context #} {% if object %} {% trans 'Update Account' %} {% else %} {% trans 'Add New Account' %} {% endif %} {% endblock %} {% block content %}

{% if account.created %} {{ _("Edit Account") }} {% else %} {{ _("Add Account") }} {% endif %}

{% csrf_token %} {{ form|crispy }} {% for error in form.errors %}
{{ error }}
{% endfor %}
{% trans "Cancel" %}
{% endblock %}