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

Closes #292: Added part_number field to DeviceType

This commit is contained in:
Jeremy Stretch
2016-07-26 11:28:45 -04:00
parent cc4470ade7
commit 8f4980044a
8 changed files with 42 additions and 10 deletions

View File

@@ -48,6 +48,16 @@
<td>Model Name</td>
<td>{{ devicetype.model }}</td>
</tr>
<tr>
<td>Part Number</td>
<td>
{% if devicetype.part_number %}
{{ devicetype.part_number }}
{% else %}
<span class="text-muted">N/A</span>
{% endif %}
</td>
</tr>
<tr>
<td>Height (U)</td>
<td>{{ devicetype.u_height }}</td>