{% extends "base.html" %} {% load i18n %} {% load 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 %}