{% extends "sentry/bases/modal.html" %} {% load crispy_forms_tags %} {% load i18n %} {% block title %}{% trans "Remove Project" %} | {{ block.super }}{% endblock %} {% block main %}
{% csrf_token %}

{% trans "Removing this project is permanent and cannot be undone!" %}

{% trans "This will also remove the all associated event data." %}

{{ form|as_crispy_errors }} {% for field in form %} {{ field|as_crispy_field }} {% endfor %}
{% trans "Cancel" %}
{% endblock %}