{% extends "fiction_outlines/base.html" %} {% load i18n %} {% block head_title %}{% trans "Delete location: " %}{{ location.name }}{% endblock %} {% block content %}

{% trans "Are you sure?" %}

{% csrf_token %}

{% trans "Are you sure you want to delete your location named " %}{{ location.name }}? {% blocktrans %}There is no undo for this.{% endblocktrans %}

{% if location.locationinstance_set.all|length %}

{% trans "This action will also remove the location from the following outlines:" %}

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