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

{% trans "Delete Project" %}

{% trans "Are you sure you want to delete the project" %}

"{{ project.name }}"

{% if project.tasks.count > 0 %}

{% trans "Warning" %}

{% blocktrans count counter=project.tasks.count %} This project has {{ counter }} task that will also be deleted. {% plural %} This project has {{ counter }} tasks that will also be deleted. {% endblocktrans %}

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