{% extends "base.html" %} {% load static %} {% block title %}Suppliers - {{ block.super }}{% endblock %} {% block content %}

Suppliers

Total Suppliers

{{ total_suppliers }}

{{ active_suppliers }} active
Active Orders

{{ active_orders }}

In progress
This Month

${{ monthly_spending|floatformat:0 }}

Total spending
Performance

{{ avg_rating|floatformat:1 }}/5

Average rating
Clear
Suppliers ({{ suppliers.count }})
{% if suppliers %}
{% for supplier in suppliers %} {% endfor %}
Supplier Type Contact Rating Status Last Order Actions
{{ supplier.name }}
{{ supplier.supplier_code }}
{{ supplier.get_supplier_type_display }}
{{ supplier.contact_person|default:"—" }}
{% if supplier.phone %} {{ supplier.phone }} {% endif %}
{% if supplier.email %} {{ supplier.email|truncatechars:20 }} {% endif %}
{% if supplier.rating %}
{% for i in "12345" %} {% if forloop.counter <= supplier.rating %} {% else %} {% endif %} {% endfor %}
({{ supplier.rating }})
{% else %} Not rated {% endif %}
{% if supplier.is_active %}Active{% else %}Inactive{% endif %} {% if supplier.last_order_date %}
{{ supplier.last_order_date|date:"M d, Y" }}
{{ supplier.last_order_date|timesince }} ago {% else %} Never {% endif %}
{% if is_paginated %} {% endif %} {% else %}
No suppliers found
{% if request.GET.search or request.GET.status %}

Try adjusting your search criteria

Clear Filters {% else %}

Add your first supplier to get started

Add First Supplier {% endif %}
{% endif %}
{% endblock %}