2021-05-17 16:27:27 -04:00
|
|
|
{% extends 'base/layout.html' %}
|
2019-09-05 17:23:56 -04:00
|
|
|
{% load helpers %}
|
|
|
|
{% load form_helpers %}
|
|
|
|
|
2021-04-18 11:35:42 -07:00
|
|
|
{% block title %}{{ obj_type|bettertitle }} Bulk Import{% endblock %}
|
|
|
|
|
2019-09-05 17:23:56 -04:00
|
|
|
{% block content %}
|
2020-05-01 14:26:04 -04:00
|
|
|
<div class="row">
|
2021-05-25 07:59:08 -07:00
|
|
|
<div class="col col-md-12 col-xl-8 offset-xl-2">
|
2021-04-18 11:35:42 -07:00
|
|
|
<ul class="nav nav-tabs mb-3" role="tablist">
|
|
|
|
<li class="nav-item" role="presentation">
|
|
|
|
<a href="#csv" class="nav-link active" role="tab" data-bs-toggle="tab">CSV</a>
|
|
|
|
</li>
|
2020-05-01 14:26:04 -04:00
|
|
|
</ul>
|
|
|
|
<div class="tab-content">
|
|
|
|
<div role="tabpanel" class="tab-pane active" id="csv">
|
|
|
|
<form action="" method="post" class="form">
|
|
|
|
{% csrf_token %}
|
|
|
|
{% render_form form %}
|
|
|
|
<div class="form-group">
|
2021-04-30 15:55:37 -07:00
|
|
|
<div class="col col-md-12 text-end">
|
2020-05-01 14:26:04 -04:00
|
|
|
{% if return_url %}
|
2021-04-18 11:35:42 -07:00
|
|
|
<a href="{{ return_url }}" class="btn btn-outline-danger">Cancel</a>
|
2020-05-01 14:26:04 -04:00
|
|
|
{% endif %}
|
2021-04-18 11:35:42 -07:00
|
|
|
<button type="submit" class="btn btn-primary">Submit</button>
|
2020-05-01 14:26:04 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
{% if fields %}
|
2021-04-18 11:35:42 -07:00
|
|
|
<div class="row my-3">
|
2021-04-30 15:55:37 -07:00
|
|
|
<div class="col col-md-12">
|
2021-04-18 11:35:42 -07:00
|
|
|
<div class="card">
|
|
|
|
<h5 class="card-header">
|
|
|
|
CSV Field Options
|
|
|
|
</h5>
|
|
|
|
<div class="card-body">
|
|
|
|
<table class="table">
|
|
|
|
<tr>
|
|
|
|
<th>Field</th>
|
|
|
|
<th>Required</th>
|
|
|
|
<th>Accessor</th>
|
|
|
|
<th>Description</th>
|
|
|
|
</tr>
|
|
|
|
{% for name, field in fields.items %}
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<code>{{ name }}</code>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{% if field.required %}
|
|
|
|
<i class="mdi mdi-check-bold text-success" title="Required"></i>
|
|
|
|
{% else %}
|
|
|
|
<span class="text-muted">—</span>
|
|
|
|
{% endif %}
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{% if field.to_field_name %}
|
|
|
|
<code>{{ field.to_field_name }}</code>
|
|
|
|
{% else %}
|
|
|
|
<span class="text-muted">—</span>
|
|
|
|
{% endif %}
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{% if field.STATIC_CHOICES %}
|
|
|
|
<button type="button" class="btn btn-link btn-sm float-end" data-bs-toggle="modal" data-bs-target="#{{ name }}_choices">
|
|
|
|
<i class="mdi mdi-help-circle"></i>
|
|
|
|
</button>
|
|
|
|
<div class="modal fade" id="{{ name }}_choices" tabindex="-1" role="dialog">
|
|
|
|
<div class="modal-dialog" role="document">
|
|
|
|
<div class="modal-content">
|
|
|
|
<div class="modal-header">
|
|
|
|
<h5 class="modal-title"><code>{{ name }}</code> Choices</h5>
|
|
|
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
|
|
|
</div>
|
|
|
|
<div class="modal-body">
|
|
|
|
<table class="table table-striped">
|
|
|
|
<tr>
|
|
|
|
<th>Import Value</th>
|
|
|
|
<th>Label</th>
|
|
|
|
</tr>
|
|
|
|
{% for value, label in field.choices %}
|
|
|
|
{% if value %}
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<samp>{{ value }}</samp>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{{ label }}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-08-20 15:44:30 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-04-18 11:35:42 -07:00
|
|
|
{% endif %}
|
|
|
|
{% if field.help_text %}
|
|
|
|
{{ field.help_text }}<br />
|
|
|
|
{% elif field.label %}
|
|
|
|
{{ field.label }}<br />
|
|
|
|
{% endif %}
|
|
|
|
{% if field|widget_type == 'dateinput' %}
|
|
|
|
<small class="text-muted">Format: YYYY-MM-DD</small>
|
|
|
|
{% elif field|widget_type == 'checkboxinput' %}
|
|
|
|
<small class="text-muted">Specify "true" or "false"</small>
|
|
|
|
{% endif %}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-05-01 14:26:04 -04:00
|
|
|
</div>
|
2021-04-18 11:35:42 -07:00
|
|
|
</div>
|
|
|
|
<p class="small text-muted">
|
|
|
|
<i class="mdi mdi-check-bold text-success"></i> Required fields <strong>must</strong> be specified for all
|
|
|
|
objects.
|
|
|
|
</p>
|
|
|
|
<p class="small text-muted">
|
|
|
|
<i class="mdi mdi-information-outline"></i> Related objects may be referenced by any unique attribute.
|
|
|
|
For example, <code>vrf.rd</code> would identify a VRF by its route distinguisher.
|
|
|
|
</p>
|
|
|
|
{% endif %}
|
2019-09-05 17:23:56 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-05-01 14:26:04 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-05-17 16:27:27 -04:00
|
|
|
{% endblock content %}
|