1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Fixes #7358: Add missing choices column to custom field CSV import form

This commit is contained in:
jeremystretch
2021-09-27 12:28:52 -04:00
parent d87d860a57
commit c7523ffc67
4 changed files with 19 additions and 6 deletions

View File

@@ -56,7 +56,13 @@
</tr>
<tr>
<th scope="row">Choices</th>
<td>{{ object.choices|placeholder }}</td>
<td>
{% if object.choices %}
{{ object.choices|join:", " }}
{% else %}
<span class="text-muted">&mdash;</span>
{% endif %}
</td>
</tr>
<tr>
<th scope="row">Filter Logic</th>