8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2024-11-25 12:53:11 +00:00
re2o/useradmin/templates/reversion/change_list.html

12 lines
558 B
HTML
Raw Normal View History

2019-02-25 16:30:45 +00:00
{# Please keep this template in sync with reversion one #}
{% extends "admin/change_list.html" %}
{% load i18n admin_urls %}
{% block object-tools-items %}
{% if not is_popup and has_add_permission and has_change_permission %}
<li><a href="{% url opts|admin_urlname:'recoverlist' %}" class="recoverlink btn btn-default btn-sm"><span class="glyphicon glyphicon-repeat"></span> {% blocktrans with cl.opts.verbose_name_plural|escape as name %}Recover deleted {{name}}{% endblocktrans %}</a></li>
{% endif %}
{{block.super}}
{% endblock %}