{% extends "dashboard/base.html" %} {% load i18n %} {% block content %}

{% if title %} {{ title }} {% else %} {% trans "Restore confirmation" %} {% endif %}

{% if text %} {{ text|safe }} {% else %} {% blocktrans with object=object %} Are you sure you want to restore {{ object }}? {% endblocktrans %} {% endif %}
{% csrf_token %} {% trans "Cancel" %}
{% endblock %}