{% extends "base.html" %} {% load i18n %} {% load crispy_forms_filters %} {% block title %} {% if object %} {% trans 'Update Account' %} {% else %} {% trans 'Add New Account' %} {% endif %} {% endblock %} {% block content %}

{% if object %} {% trans "Update Account" %} {% else %} {% trans "Add New Account" %} {% endif %}

{% csrf_token %} {{ form|crispy }}
{% trans "Cancel" %}
{% endblock %}