{% extends "main_aside.html" %} {% load i18n %} {% block title %}{% trans "Delete a contact" %}{% endblock %} {% block main_content %}

{% blocktrans with first_name=object.first_name last_name=object.last_name %}Do you want to delete {{ first_name }} {{ last_name }}?{% endblocktrans %}

{% csrf_token %}
{% include "form_snippet.html" %}
{% trans "Go back" %}
{% endblock %}