{% extends "base.html" %} {% set active = 'pins' %} {% block title %}管脚 · DocGraph{% endblock %} {% block content %}

管脚 ({{ nodes|length }})

{% if not nodes %}

没有管脚节点。

{% else %} {% for doc_id, group in nodes | groupby('doc_id') %}

{{ doc_id | doc_name }} ({{ group|length }})

{% for n in group %} {% endfor %}
namedirectionpin_nofunctionsdescriptionpage
{{ n.name }} {{ n.attrs.get('direction') or '—' }} {{ n.attrs.get('pin_no') or '—' }} {{ ', '.join(n.attrs.get('functions') or []) or '—' }} {{ n.attrs.get('description') | short(120) }} {{ n.location.page or '—' }}
{% endfor %} {% endif %} {% endblock %}