Back to Netbox

Configrevision Restore

netbox/templates/core/configrevision_restore.html

4.6.1896 B
Original Source

{% extends 'generic/object.html' %} {% load helpers %} {% load buttons %} {% load perms %} {% load static %} {% load i18n %} {% block title %}{% trans "Restore" %}: {{ object }}{% endblock %} {% block subtitle %}

{% trans "Created" %} {{ object.created|isodatetime }} {% endblock %} {% block control-buttons %} {% if request.user|can_delete:job %} {% delete_button job %} {% endif %} {% endblock control-buttons %} {% block tabs %} {% endblock %} {% block content %}

{% trans "Parameter" %}{% trans "Current Value" %}{% trans "New Value" %}
{% for param, current, new in params %}{{ param }}{{ current }}{{ new }}
{% endfor %}

{% csrf_token %} {% trans "Cancel" %}{% trans "Restore" %} {% endblock content %} {% block modals %} {% endblock modals %}