{% extends 'netbox_ip_history/base.html' %} {% load i18n %} {% block title %}{% trans "Event" %} #{{ event.pk }} | {{ event.ip_address }}{% endblock %} {% block page_title %}{% trans "Event" %} #{{ event.pk }}{% endblock %} {% block subtitle %} {{ event.get_event_type_display|default:event.event_type }} {{ event.ip_address }}{% if event.prefix_length %}/{{ event.prefix_length }}{% endif %} {% endblock %} {% block extra_buttons %} {% trans "Back to Timeline" %} {% trans "Compare Sources" %} {% endblock extra_buttons %} {% block ip_history_content %}
| {% trans "Timestamp" %} | {{ event.timestamp|date:"Y-m-d H:i:s T" }} |
|---|---|
| {% trans "Data Source" %} | {{ event.source.name }} |
| {% trans "Event Type" %} | {{ event.get_event_type_display|default:event.event_type }} |
| {% trans "Source Record ID" %} | {{ event.source_record_id|default:"—" }} |
| {% trans "User" %} | {{ event.source_username|default:"—" }} |
| {% trans "Import Job" %} | {% if event.import_job %} #{{ event.import_job.pk }} {% else %} — {% endif %} |
| {% trans "IP Address" %} | {{ event.ip_address }}{% if event.prefix_length %}/{{ event.prefix_length }}{% endif %} |
|---|---|
| {% trans "VRF" %} | {{ event.vrf_name|default:event.vrf_rd|default:"Global" }} |
| {% trans "DNS Name" %} | {{ event.dns_name|default:"—" }} |
| {% trans "Hostname" %} | {{ event.hostname|default:"—" }} |
| {% trans "Owner / Device" %} | {{ event.owner_name|default:event.device_name|default:event.virtual_machine_name|default:"—" }} |
| {% trans "Interface" %} | {% if event.interface_name %}{{ event.interface_name }}{% endif %} {% if event.mac_address %}{{ event.mac_address }}{% endif %} {% if not event.interface_name and not event.mac_address %}—{% endif %} |
| {% trans "Description" %} | {{ event.description|default:"—" }} |
{{ event.raw_data }}