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

Closes #2104: Add 'status' field to Rack

This commit is contained in:
Jeremy Stretch
2018-11-01 16:03:42 -04:00
parent 91ce6c2420
commit fa6c4db13b
10 changed files with 124 additions and 37 deletions

View File

@@ -105,6 +105,12 @@
{% endif %}
</td>
</tr>
<tr>
<td>Status</td>
<td>
{{ rack.get_status_display }}
</td>
</tr>
<tr>
<td>Role</td>
<td>

View File

@@ -9,6 +9,7 @@
{% render_field form.name %}
{% render_field form.facility_id %}
{% render_field form.group %}
{% render_field form.status %}
{% render_field form.role %}
{% render_field form.serial %}
</div>