{% extends "base.html" %} {% block title %}Confirm Delete - QR Code Management{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

Confirm QR Code Deletion

QR Code for {{ qr_code.name }}

{{ qr_code.name }} {{ 'Active' if qr_code.active_status else 'Inactive' }}

Location: {{ qr_code.location }}
{% if qr_code.location_address %}
Address: {{ qr_code.location_address }}
{% endif %} {% if qr_code.location_event %}
Event: {{ qr_code.location_event }}
{% endif %}
Created: {{ qr_code.created_date.strftime('%B %d, %Y at %H:%M') }}
Created by: {{ qr_code.creator.full_name }}
QR Code ID: #{{ qr_code.id }}

Warning: This action cannot be undone!

Permanently deleting this QR code will:

  • Remove the QR code completely from the database
  • Make the QR code link permanently inaccessible
  • Delete all associated scan data and statistics
  • Remove any references to this QR code in reports

Alternative: Consider deactivating the QR code instead if you might need it later.

{% endblock %} {% block extra_scripts %} {% endblock %}