{% extends "base.html" %} {% set active = 'timing' %} {% 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 %}
symbolmintypmaxunit conditionpage
{{ n.name }} {{ n.attrs.get('min') or '—' }} {{ n.attrs.get('typ') or '—' }} {{ n.attrs.get('max') or '—' }} {{ n.attrs.get('unit') or '—' }} {{ n.attrs.get('condition') | short(80) }} {{ n.location.page or '—' }}
{% endfor %} {% endif %} {% endblock %}