{% extends 'base.html' %} {% load static %} {% block title %}Delete Equipment - {{ equipment.name }}{% endblock %} {% block css %} {% endblock %} {% block content %}

Delete Equipment

Delete Equipment

You are about to permanently delete this equipment from the system. This action cannot be undone and will affect all related records and maintenance history.

Critical Warning
Equipment Information
Equipment Name
{{ equipment.name }}
Equipment ID
{{ equipment.equipment_id|default:"Not assigned" }}
Serial Number
{{ equipment.serial_number }}
Manufacturer
{{ equipment.manufacturer }} {{ equipment.model }}
Category
{{ equipment.get_category_display }}
Current Location
{{ equipment.current_location|default:"Not specified" }}
Status
{% if equipment.status == 'available' %} Available {% elif equipment.status == 'in_use' %} In Use {% elif equipment.status == 'maintenance' %} Maintenance {% elif equipment.status == 'out_of_order' %} Out of Order {% endif %}
Purchase Cost
{% if equipment.purchase_cost %} ${{ equipment.purchase_cost|floatformat:2 }} {% else %} Not specified {% endif %}
{% if equipment.image %} {{ equipment.name }} {% else %}
{% endif %}
Impact Analysis
{{ maintenance_records_count }}
Maintenance Records
{{ active_reservations_count }}
Active Reservations
{{ usage_logs_count }}
Usage Logs
{{ documents_count }}
Related Documents
{% if blocking_conditions %}
Deletion Blocked
Cannot Delete Equipment

This equipment cannot be deleted due to the following conditions:

    {% for condition in blocking_conditions %}
  • {{ condition }}
  • {% endfor %}

Please resolve these issues before attempting to delete this equipment.

{% else %}
Consider These Alternatives

Before deleting this equipment, consider these alternative actions:

Deletion Confirmation Required
{% csrf_token %}
DELETE {{ equipment.name }} {{ equipment.serial_number }}
This confirmation helps prevent accidental deletions.
Cancel
{% endif %}
{% endblock %} {% block js %} {% endblock %}