{% extends "base.html" %} {% load static %} {% block title %}Delete {{ object.name }} - Suppliers - {{ block.super }}{% endblock %} {% block content %}
You are about to permanently delete the supplier "{{ object.name }}". This will remove all associated data and purchase history.
| Code: | {{ object.supplier_code }} |
| Name: | {{ object.name }} |
| Type: | {{ object.get_supplier_type_display }} |
| Status: | {% if object.is_active %}Active{% else %}Inactive{% endif %} |
| Created: | {{ object.created_at|date:"M d, Y" }} |
| Contact: | {{ object.contact_person|default:"—" }} |
| Phone: | {{ object.phone|default:"—" }} |
| Email: | {{ object.email|default:"—" }} |
| Rating: |
{% if object.rating %}
{% for i in "12345" %}
{% if forloop.counter <= object.rating %}
{% else %}
{% endif %}
{% endfor %}
{% else %}
—
{% endif %}
|