{% extends "main/form/base.html" %}
{% load main_extras %}
{% load i18n %}
{% block title_new %}
{% translate "Create account" %}
{% endblock %}
{% block h2_new %}
{% translate "New account" %}
{% endblock %}
{% block h2 %}{{ form.instance.icon|remix }}{{ form.instance }}{% endblock %}
{% block tables %}
{% if not form.instance|adding %}
{% translate "Statements" %}
{% include "statement/statement_table.html" %}
{% translate "Transactions" %}
{% include "transaction/transaction_table.html" %}
{% if history %}
{% translate "History" %}
{% include "history/plot.html" %}
{% endif %}
{% endif %}
{% endblock %}