{% extends "base.html" %} {% comment %} SPDX-License-Identifier: GPL-3.0-or-later {% endcomment %} {% load i18n crispy_forms_tags %} {% block content %}

{% trans "Delete invoice" %}

{% if object.locked %}
{% blocktrans %}This invoice is locked and can't be deleted.{% endblocktrans %}
{% else %}
{% blocktrans %}Are you sure you want to delete this invoice? This action can't be undone.{% endblocktrans %}
{% endif %}
{% endblock %}