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

{% trans "Delete Patient" %}

{% trans "Are you sure you want to delete this patient? This action cannot be undone." %}

{{ patient.get_full_name }}

{% trans "MRN:" %} {{ patient.mrn }}

{% if patient.phone %}

{{ patient.phone }}

{% endif %} {% if patient.email %}

{{ patient.email }}

{% endif %}
{% csrf_token %}
{% trans "Cancel" %}
{% endblock %} {% block extra_js %} {% endblock %}