We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 183c7de commit dd6d9bfCopy full SHA for dd6d9bf
netbox/templates/dcim/inc/cable_termination.html
@@ -15,15 +15,14 @@
15
<td>Rack</td>
16
<td>{{ terminations.0.device.rack|linkify|placeholder }}</td>
17
</tr>
18
- <tr>
19
- <td>Device</td>
20
- <td>{{ terminations.0.device|linkify }}</td>
21
- </tr>
22
<tr>
23
<td>{{ terminations.0|meta:"verbose_name"|capfirst }}</td>
24
<td>
25
{% for term in terminations %}
26
- {{ term|linkify }}{% if not forloop.last %},{% endif %}
+ {{term.device|linkify}}
+ <i class="mdi mdi-chevron-right" aria-hidden="true"></i>
+ {{ term|linkify }}
+ {% if not forloop.last %}<br/>{% endif %}
27
{% endfor %}
28
</td>
29
0 commit comments