Make edge modulation steps more consistent
This commit is contained in:
parent
db8c02df04
commit
bd5d46a5d4
8 changed files with 227 additions and 118 deletions
|
|
@ -25,7 +25,7 @@
|
|||
{% if root_node.connections %}
|
||||
{% if config.tree_node_summary %}<li><strong>Connections</strong>
|
||||
<ul>{% endif %}
|
||||
{% for connection in root_node.connections %}
|
||||
{% for _, connection in root_node.connections %}
|
||||
<li><a href="/node/{{connection.to}}">{{connection.to}}</a></li>
|
||||
{% endfor %}
|
||||
{% if config.tree_node_summary %}</ul>
|
||||
|
|
@ -53,7 +53,7 @@
|
|||
{% if node.connections %}
|
||||
{% if config.tree_node_summary %}<li><strong>Connections</strong>
|
||||
<ul>{% endif %}
|
||||
{% for connection in node.connections %}
|
||||
{% for _, connection in node.connections %}
|
||||
{% if not connection.detached %}
|
||||
<li><a href="/node/{{connection.to}}">{{connection.to}}</a></li>
|
||||
{% endif %}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue