+
+
+
+
+ {% if fields %}
+
+
+ CSV Field Options
+
+
+
+ Field |
+ Required |
+ Dynamic |
+ Description |
+
+ {% for name, field in fields.items %}
+
+
+ {{ name }}
+ |
+
+ {% if field.required %}
+
+ {% endif %}
+ |
+
+ {% if field.to_field_name %}
+
+ {% endif %}
+ |
+
+ {% if field.help_text %}
+ {{ field.help_text }}
+ {% elif field.label %}
+ {{ field.label }}
+ {% endif %}
+ {% if field.choices %}
+ Choices: {{ field|example_choices }}
+ {% elif field|widget_type == 'dateinput' %}
+ Format: YYYY-MM-DD
+ {% elif field|widget_type == 'checkboxinput' %}
+ Specify "true" or "false"
+ {% endif %}
+ |
+
+ {% endfor %}
+
+
+
+ Required fields must be specified for all
+ 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.
+
{% endif %}