{% extends "base.html" %} {% block title %}Categories{% endblock %} {% block page_title %}Categories{% endblock %} {% block topbar_actions %} Expense Income {% endblock %} {% block content %}
Expense Categories
{% if expense_cats %} {% for cat in expense_cats %} {% endfor %}
CategoryTypeActions
{{ cat.name }} {% if cat.is_system %}system{% endif %}
{{ cat.category_type | title }} Edit {% if not cat.is_system %}
{% endif %}
{% else %}

No expense categories.

{% endif %}
Income Categories
{% if income_cats %} {% for cat in income_cats %} {% endfor %}
CategoryTypeActions
{{ cat.name }} {% if cat.is_system %}system{% endif %}
{{ cat.category_type | title }} Edit {% if not cat.is_system %}
{% endif %}
{% else %}

No income categories.

{% endif %}
{% endblock %}