{% extends "layout/base.html" %} {% block title %}Create CA{% endblock %} {% block content %}

Create Chartered Accountant


Select Access (Year → Category → Months)

{% for comp in structure %}

{% for yr in comp.years %}

{% for cat in yr.categories %}
📂 {{ cat.category.name }} {% if cat.type == 'purchase' %}
{% for m in cat.months %}
{% endfor %}
{% for m in cat.months %} {% if m.id in cat.month_parties %} {% endif %} {% endfor %} {% elif cat.type == 'expenses' %}
{% for m in cat.months %}
{% endfor %}
{% for m in cat.months %} {% endfor %} {% else %}
{% for m in cat.months %}
{% endfor %}
{% endif %}
{% endfor %}
{% endfor %}
{% endfor %}
{% endblock %}