Fixes #9222: Fix circuit ID display under cable view

This commit is contained in:
jeremystretch 2022-04-25 21:09:20 -04:00
parent 6b73d22da1
commit 6a225e53f5
2 changed files with 6 additions and 1 deletions

View File

@ -20,6 +20,7 @@
* [#9158](https://github.com/netbox-community/netbox/issues/9158) - Do not list tags field for CSV forms which do not support tag assignment * [#9158](https://github.com/netbox-community/netbox/issues/9158) - Do not list tags field for CSV forms which do not support tag assignment
* [#9194](https://github.com/netbox-community/netbox/issues/9194) - Support position assignment when add module bays to multiple devices * [#9194](https://github.com/netbox-community/netbox/issues/9194) - Support position assignment when add module bays to multiple devices
* [#9206](https://github.com/netbox-community/netbox/issues/9206) - Show header for comments field under module & module type creation views * [#9206](https://github.com/netbox-community/netbox/issues/9206) - Show header for comments field under module & module type creation views
* [#9222](https://github.com/netbox-community/netbox/issues/9222) - Fix circuit ID display under cable view
--- ---

View File

@ -32,7 +32,11 @@
</tr> </tr>
<tr> <tr>
<td>Circuit</td> <td>Circuit</td>
<td>{{ termination.|linkify }} ({{ termination }})</td> <td>{{ termination.circuit|linkify }}</td>
</tr>
<tr>
<td>Termination</td>
<td>{{ termination }}</td>
</tr> </tr>
{% endif %} {% endif %}
</table> </table>