{% load static %}
{% if not category_list %}

No records found!

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