{% if title %}
{{ title }}
{% else %}
{% trans "Delete confirmation" %}
{% endif %}
{% if text %}
{{ text|safe }}
{% else %}
{% if member %}
{% blocktrans with group=object member=member %}
Do you really want to remove {{ member }} from {{ group }}?
{% endblocktrans %}
{% else %}
{% blocktrans with object=object %}
Are you sure you want to delete {{ object }}?
{% endblocktrans %}
{% endif %}
{% endif %}