{% load static %}
{% if not categories %}

No expense category created yet! Please use the New Category button to create some.

{% else %}
Name
Description
Created By
Date of Creation
Action
{% for category in categories %}
{{ category.name }}
{{ category.description }}
{{ category.created_by }}
{{ category.created_at }}
{% endfor %} {% endif %}