{% extends 'admin_pages/base_admin.html' %} {% block title %}Consumers | Admin Panel{% endblock %} {% block content %}

Consumer List

{% block breadcrumbs %} {% endblock %} {# Search & Sort #}
{# Table & Actions #}
{% csrf_token %}
{% if perms.inventory.add_consumer %} Add Consumer {% endif %}
{% for consumer in consumers %} {% empty %} {% endfor %}
ID Name Business Nature In-Charge Phone Email Address Actions
{{ consumer.id }} {{ consumer.name }} {{ consumer.business_nature }} {{ consumer.in_charge }} {{ consumer.phone_number }} {{ consumer.email }} {{ consumer.address }}
No consumers found.
{% endblock %}