{% extends '_base.html' %} {% load render_table from django_tables2 %} {% load form_helpers %} {% block title %}Device Import{% endblock %} {% block content %} {% include 'dcim/inc/device_import_header.html' with active_tab='child_import' %}
{% csrf_token %} {% render_form form %}
Cancel

CSV Format

Field Description Example
Name Device name (optional) Blade12
Device role Functional role of device Blade Server
Tenant Name of tenant (optional) Pied Piper
Device manufacturer Hardware manufacturer Dell
Device model Hardware model BS2000T
Platform Software running on device (optional) Linux
Serial number Physical serial number (optional) CAB00577291
Asset tag Unique alphanumeric tag (optional) ABC123456
Parent device Parent device Server101
Device bay Device bay name Slot 4

Example

Blade12,Blade Server,Pied Piper,Dell,BS2000T,Linux,CAB00577291,ABC123456,Server101,Slot4
{% endblock %}