{% extends 'base.html' %} {% block title %} Edit Financial {% endblock %} {% block content %}
{% include 'components/button.html' with variant='btn-primary' text='< Back' %}

Edit Financial

{% csrf_token %} {% for field in form %} {{ field }} {% if field.errors %}

{{ field.errors.0 }}

{% endif %} {% endfor %}
{% endblock %}