2017-05-03 15:41:36 -04:00
|
|
|
{% extends 'utilities/obj_import.html' %}
|
2016-07-26 14:58:37 -04:00
|
|
|
{% load render_table from django_tables2 %}
|
|
|
|
{% load form_helpers %}
|
|
|
|
|
|
|
|
{% block title %}Tenant Import{% endblock %}
|
|
|
|
|
2017-05-03 15:41:36 -04:00
|
|
|
{% block instructions %}
|
|
|
|
<h4>CSV Format</h4>
|
|
|
|
<table class="table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Field</th>
|
|
|
|
<th>Description</th>
|
|
|
|
<th>Example</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>Name</td>
|
|
|
|
<td>Tenant name</td>
|
|
|
|
<td>WIDG01</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Slug</td>
|
|
|
|
<td>URL-friendly name</td>
|
|
|
|
<td>widg01</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Group</td>
|
|
|
|
<td>Tenant group (optional)</td>
|
|
|
|
<td>Customers</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Description</td>
|
|
|
|
<td>Long-form name or other text (optional)</td>
|
|
|
|
<td>Widgets Inc.</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
<h4>Example</h4>
|
|
|
|
<pre>WIDG01,widg01,Customers,Widgets Inc.</pre>
|
2016-07-26 14:58:37 -04:00
|
|
|
{% endblock %}
|