{% extends 'wfrs/dashboard/form_base.html' %} {% load currency_filters %} {% load i18n %} {% block form_fields %}

{% trans "Add Existing Account" %}

Basic Information

{% include 'dashboard/partials/form_field.html' with field=form.name %} {% include 'dashboard/partials/form_field.html' with field=form.primary_user %} {% include 'dashboard/partials/form_field.html' with field=form.status %} {% include 'dashboard/partials/form_field.html' with field=form.credit_limit %} {% include 'dashboard/partials/form_field.html' with field=form.account_number %} {% include 'dashboard/partials/form_field.html' with field=form.locale %}

Billing Address

{% include 'dashboard/partials/form_field.html' with field=form.title %} {% include 'dashboard/partials/form_field.html' with field=form.first_name %} {% include 'dashboard/partials/form_field.html' with field=form.last_name %} {% include 'dashboard/partials/form_field.html' with field=form.line1 %} {% include 'dashboard/partials/form_field.html' with field=form.line2 %} {% include 'dashboard/partials/form_field.html' with field=form.line3 %} {% include 'dashboard/partials/form_field.html' with field=form.line4 %} {% include 'dashboard/partials/form_field.html' with field=form.state %} {% include 'dashboard/partials/form_field.html' with field=form.postcode %} {% include 'dashboard/partials/form_field.html' with field=form.country %}
{% trans "Cancel" %}
{% endblock %}