{% extends "base.html" %} {% load static %} {% block title %}Suppliers - {{ block.super }}{% endblock %} {% block content %}
| 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 }})
|
{% 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 %}
|
Try adjusting your search criteria
Clear Filters {% else %}Add your first supplier to get started
Add First Supplier {% endif %}