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

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

{% trans "Please enter the Owner of the organization you would like to transfer this project to." %}

{{ form|as_crispy_errors }} {% for field in form %} {{ field|as_crispy_field }} {% endfor %}

{% trans "A request will be emailed to the Owner in order to transfer" %} {{ project.name }} {%trans "to a new organization." %}

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