{% extends "master.html" %}
{% block title %}{{tree_id}} - PhyloCommons{% endblock %}
{% block nav-trees %}class="active"{% endblock %}
{% block leftmenu %}
{% include "tree_menu.html" %}
{% endblock %}
{% block content %}
{% if obj_info %}
Property | Value |
{% for v_uri, v_label, o_uri, o_label in obj_info %}
{% if 'http://' in v_uri or 'https://' in v_uri %}{{ v_label }}{% else %}{{ v_label }}{% endif %} |
{% if 'http://' in o_uri or 'https://' in o_uri %}{{ o_label }}{% else %}{{ o_label }}{% endif %} |
{% endfor %}
{% endif %}
{% endblock %}