{% extends 'layouts/two_pane.html' %} {% load bootstrap4 %} {% load yagura_notifications %} {% block content_main %}

{% trans 'Confirm of deleteing recipient' %}

{% blocktrans with url=slackrecipient.site.url %}Deleting notification for {{ url }}{% endblocktrans %}

{% can_delete slackrecipient request.user as can_delete_ %} {% if can_delete_ %}
{% csrf_token %} {% trans 'Confirm' as confirm_label %} {% bootstrap_button confirm_label 'submit' %}
{% else %}

You do not have permission to delete this recipient

{% endif %}
{% endblock %}