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

{% trans "Are you sure?" %}

{% csrf_token %}

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

{% if character.characterinstance_set.all|length %}

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

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