{% extends 'base.html' %} {% load i18n %} {% load static %} {% load widget_tweaks %} {% block title %} {% trans "Update chart of Account"%} {% endblock %} {% block content %}
{% csrf_token %}
{{ 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.active.label_tag }} {{ form.active }} {% if form.active.help_text %}{{ form.active.help_text }}{% endif %} {% for error in form.active.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 'Back' %}
{% endblock %}