Browse Source

List family members on node page

pull/11/head
Luke Childs 8 years ago
parent
commit
a7ecadc93b
  1. 6
      views/node.html

6
views/node.html

@ -147,6 +147,12 @@
<dt>Consensus Weight</dt> <dt>Consensus Weight</dt>
<dd>{{ node.consensus_weight }}</dd> <dd>{{ node.consensus_weight }}</dd>
{% endif %} {% endif %}
{% if node.effective_family %}
<dt>Family</dt>
{% for familyMember in node.effective_family %}
<dd><a href="/node/{{ familyMember | replace('$', '') }}">{{ familyMember }}</a></dd>
{% endfor %}
{% endif %}
</dl> </dl>
</section> </section>
{% endif %} {% endif %}

Loading…
Cancel
Save