{% extends 'base/layout.html' %} {% load i18n %} {% block title %}{% trans "Delete Rulebook" %}{% endblock %} {% block content %}
{% trans "Delete Rulebook" %}
{% if blockers %}

{% trans "This rulebook cannot be deleted:" %}

    {% for reason in blockers %}
  • {{ reason }}
  • {% endfor %}
{% else %}

{% blocktrans trimmed with name=object.name %} Are you sure you want to delete {{ name }}? {% endblocktrans %}

{% csrf_token %} {% trans "Cancel" %}
{% endif %}
{% if blockers %} {% endif %}
{% endblock content %}