{% extends 'base.html' %} {% load i18n static %} {% load django_ledger %} {% load widget_tweaks %} {% block title %} {% trans "Create Chart of Accounts" %} {% endblock %} {% block content %}

{% trans 'Create Chart of Accounts' %}

{% csrf_token %} {# Bootstrap form rendering #}
{{ form.name.label_tag }} {{ form.name|add_class:"form-control" }} {% if form.name.help_text %}{{ form.name.help_text }}{% endif %} {% for error in form.name.errors %}
{{ error }}
{% endfor %}
{{ form.description.label_tag }} {{ form.description|add_class:"form-control" }} {% if form.description.help_text %} {{ form.description.help_text }} {% endif %} {% for error in form.description.errors %}
{{ error }}
{% endfor %}

{% trans 'Cancel' %}
{% endblock %}