From f9f7c19d810e622d376f544e6c5d1c232e86a1f4 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Fri, 1 May 2020 16:01:55 -0400 Subject: [PATCH] Clean up CSV import table --- netbox/templates/utilities/obj_bulk_import.html | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/netbox/templates/utilities/obj_bulk_import.html b/netbox/templates/utilities/obj_bulk_import.html index ea46dd08b..b735adb39 100644 --- a/netbox/templates/utilities/obj_bulk_import.html +++ b/netbox/templates/utilities/obj_bulk_import.html @@ -43,7 +43,7 @@ Field Required - Dynamic + Accessor Description {% for name, field in fields.items %} @@ -54,11 +54,15 @@ {% if field.required %} + {% else %} + {% endif %} {% if field.to_field_name %} - + {{ field.to_field_name }} + {% else %} + {% endif %} @@ -84,9 +88,8 @@ objects.

- Dynamic fields may optionally refer to a related object by an - alternative attribute. For example, vrf.rd would identify a VRF by its RD - attribute. + Related objects may be referenced by any unique attribute. + For example, vrf.rd would identify a VRF by its route distinguisher.

{% endif %}