{% extends 'base/layout.html' %} {% block title %}Pull Sheet: {{ cable }}{% endblock %} {% block content %}
| # | Pathway | Type | From | To | Length | Notes |
|---|---|---|---|---|---|---|
| {{ forloop.counter }} | {% if segment.pathway %} {{ segment.pathway.name }} {% else %} — {% endif %} | {% if segment.pathway %} {{ segment.pathway.get_pathway_type_display }} {% else %}—{% endif %} | {% if segment.pathway %} {% with ep=segment.pathway.start_endpoint %} {% if ep %}{{ ep }}{% else %}—{% endif %} {% endwith %} {% else %}—{% endif %} | {% if segment.pathway %} {% with ep=segment.pathway.end_endpoint %} {% if ep %}{{ ep }}{% else %}—{% endif %} {% endwith %} {% else %}—{% endif %} | {% if segment.pathway and segment.pathway.length %} {{ segment.pathway.length }} m {% else %}—{% endif %} | {% if segment.comments %} {{ segment.comments|truncatewords:5 }} {% else %}—{% endif %} |
| No pathway segments assigned to this cable. | ||||||