{% extends 'base/layout.html' %} {% load i18n %} {% block title %}{% trans "Confirm Import Override" %}{% endblock %} {% block content %}
{% trans "Singleton already exists — confirm override" %}
{% if existing %}
{% trans "Existing record that will be replaced:" %}
{% trans "Name" %} {{ existing.name }}
{% trans "Domain" %} {{ existing.domain|default:"—" }}
{% trans "IP Address" %} {% if existing.ip_address %}{{ existing.ip_address.address }}{% else %}—{% endif %}
{% trans "Port" %} {{ existing.port }}
{% endif %} {# Re-submit the original import form data with confirm_override=true #}
{% csrf_token %} {% for key, values in post_items %} {% if key != "csrfmiddlewaretoken" %} {% for val in values %} {% endfor %} {% endif %} {% endfor %}
{% trans "Cancel" %}
{% endblock %}