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

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

{% trans "Project:" %} {{ project.name }}
{% trans "Hospital:" %} {{ project.hospital.name }}
{% trans "Status:" %} {{ project.get_status_display }}
{% if project.tasks.count > 0 %}
{% blocktrans with count=project.tasks.count %} This project has {{ count }} task(s) that will also be deleted. {% endblocktrans %}
{% endif %}

{% trans "This action cannot be undone." %}

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