{% extends "base.html" %} {% load static %} {% block title %}{{ object.name }} - Equipment Details{% endblock %} {% block content %}
| Equipment Name: | {{ object.name }} |
| Modality: | {{ object.get_modality_display }} |
| Manufacturer: | {{ object.manufacturer|default:"Not specified" }} |
| Model: | {{ object.model|default:"Not specified" }} |
| Serial Number: | {{ object.serial_number|default:"Not specified" }} |
| Location: | {{ object.location|default:"Not specified" }} |
| Installation Date: | {{ object.installation_date|date:"M d, Y"|default:"Unknown" }} |
| Warranty Expires: | {% if object.warranty_expiry %} {{ object.warranty_expiry|date:"M d, Y" }} {% else %} Not specified {% endif %} |
| Asset Tag: | {{ object.asset_tag|default:"Not assigned" }} |
| Purchase Cost: | {{ object.purchase_cost|default:"Not specified" }} |
Studies Today
This Week
This Month
Utilization
| Date | Type | Description | Technician | Status | Cost |
|---|---|---|---|---|---|
| {{ record.date|date:"M d, Y" }} | {{ record.get_type_display }} | {{ record.description|truncatewords:10 }} | {{ record.technician|default:"Not specified" }} | {{ record.get_status_display }} | {{ record.cost|default:"N/A" }} |
No maintenance records found.
No technical specifications available.
{% endif %}