{% extends "layouts/base.html" %} {% load i18n %} {% block title %}Delete {{ template.name }} - PX360{% endblock %} {% block content %}

{% trans "Confirm Delete" %}

{% trans "Warning:" %} {% trans "This action cannot be undone!" %}

{% blocktrans %}Are you sure you want to delete the journey template "{{ template.name }}"?{% endblocktrans %}

{% trans "Template Information" %}
{% trans "Name:" %} {{ template.name }}
{% trans "Hospital:" %} {{ template.hospital.get_localized_name }}
{% trans "Journey Type:" %} {{ template.get_journey_type_display }}
{% trans "Stages:" %} {{ template.stages.count }}
{% trans "Journey Instances:" %} {{ template.instances.count }}

{% trans "This will also delete all associated stages and any related data. Active journeys using this template will not be affected, but new journeys cannot be created with this template." %}

{% csrf_token %}
{% trans "Cancel" %}
{% endblock %}