{% block head %}
{% block title %}{{ config['APP_TITLE'] }} {% endblock %}
{% endblock %} {% if config['ENVIRONMENT'] == 'test' %}
THIS IS A TEST INSTANCE WORKING WITH (POSSIBLY OUTDATED) COPIES OF THE ONTOLOGIES
{% endif %}
{% if APP_TITLE2 is defined %} {{ APP_TITLE2 }} {% else %} {{ config['APP_TITLE'] }} {% endif %}
Home
{% if has_any_permission("hierarchical-spreadsheets", "index", "repository-config-view") %}
Admin
{% endif %}
{% if login %}
{{ login }}
Logout
{% endif %}
Home
{% if breadcrumb is defined %} {% for segment in breadcrumb %} {% if loop.last %}
{{ segment.name }}
{% else %}
{{ segment.name }}
{% endif %} {% endfor %} {% endif %}
{% if branches is defined and active_branch %}
{{ active_branch }}
{% for branch in branches %}
{% if main_branch is defined and branch == main_branch %}
{% endif %}
{{ branch }}
{% endfor %}
{% endif %}
{% block content %}{% endblock %}
{# #}
v{{ config['APP_VERSION'] }}
{% block javascriptblock %} {% endblock %}