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

Use segment_count for segment count on trace view

This commit is contained in:
kkthxbye-code
2022-07-18 16:17:16 +02:00
parent 4bdef80554
commit 8a2276e791

View File

@ -18,7 +18,6 @@
</div> </div>
</div> </div>
<div class="trace-end"> <div class="trace-end">
{% with traced_path=path.origin.trace %}
{% if path.is_split %} {% if path.is_split %}
<h3 class="text-danger">Path split!</h3> <h3 class="text-danger">Path split!</h3>
<p>Select a node below to continue:</p> <p>Select a node below to continue:</p>
@ -39,7 +38,7 @@
<table class="table"> <table class="table">
<tr> <tr>
<th scope="row">Total segments</th> <th scope="row">Total segments</th>
<td>{{ traced_path|length }}</td> <td>{{ path.segment_count }}</td>
</tr> </tr>
<tr> <tr>
<th scope="row">Total length</th> <th scope="row">Total length</th>
@ -54,7 +53,6 @@
</tr> </tr>
</table> </table>
{% endif %} {% endif %}
{% endwith %}
</div> </div>
{% else %} {% else %}
<h3 class="text-center text-muted my-3"> <h3 class="text-center text-muted my-3">