diff --git a/netbox/templates/admin/extras/configrevision/restore.html b/netbox/templates/admin/extras/configrevision/restore.html index 15531de2d..4a0eb81a6 100644 --- a/netbox/templates/admin/extras/configrevision/restore.html +++ b/netbox/templates/admin/extras/configrevision/restore.html @@ -1,4 +1,5 @@ {% extends "admin/base_site.html" %} +{% load static %} {% block content %}

Restore configuration #{{ object.pk }} from {{ object.created }}?

@@ -9,14 +10,16 @@ Parameter Current Value New Value + {% for param, current, new in params %} - + {{ param }} {{ current }} {{ new }} + {% if current != new %}*{% endif %} {% endfor %}