{% extends "layouts/base.html" %} {% load i18n %} {% load static %} {% block title %}{% trans "Delete Suggestion" %} - PX360{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

{% trans "Delete Suggestion" %}

{% trans "Back to Detail" %}
{% trans "Confirm Deletion" %}

{% trans "Are you sure you want to delete this suggestion?" %}

{% trans "This action will soft delete the suggestion. It will be marked as deleted but remain in the database for audit purposes." %}

{% trans "ID" %} {{ feedback.id|slice:":8" }}...
{% trans "Type" %} {{ feedback.get_feedback_type_display }}
{% trans "Title" %} {{ feedback.title }}
{% trans "Contact" %} {{ feedback.get_contact_name }}
{% trans "Hospital" %} {{ feedback.hospital.name }}
{% trans "Status" %} {{ feedback.get_status_display }}
{% trans "Created" %} {{ feedback.created_at|date:"F d, Y H:i" }}
{% if feedback.rating %}
{% trans "Rating" %} {% for i in "12345" %} {% if forloop.counter <= feedback.rating %} {% else %} {% endif %} {% endfor %} ({{ feedback.rating }}/5)
{% endif %}
{% trans "Warning:" %} {% trans "All associated responses and timeline entries will be preserved for audit purposes." %}
{% csrf_token %} {% trans "Cancel" %}
{% trans "Deleted suggestions can be restored by system administrators if needed." %}
{% endblock %}