{% extends "site_base.html" %} {% load i18n %} {% block title %}{% if attribute == None %}Taxonomy Structure - Attributes{% else %}Taxonomy Structure - Attribute: {{ attribute.title }}{% endif %}{% endblock title %} {% block extra_head %} {{ block.super }} {% if oqp_version_maj == '1' %} {% else %} {% endif %} {% endblock extra_head %} {% block body %} {% block oq_body_heading %}
{% if attribute == None %}

{% trans "TAXONOMY STRUCTURE - ATTRIBUTES" %}

{% else %}

{% trans "TAXONOMY STRUCTURE" %}

{% trans "ATTRIBUTE" %}: {% trans attribute.title %}

{% endif %}
{% endblock oq_body_heading %} {% if attribute == None %}

Hierarchy

All Attributes

All Atoms Groups

All Atoms


{% for attribute in attributes|dictsort:"prog" %} {% endfor %}
Name Title Order Id
{{ attribute.name }} {{ attribute.title }} {{ attribute.prog }}
{% else %}

Hierarchy

All Attributes

All Atoms Groups

All Atoms


Name: {{ attribute.name }}
Title:{{ attribute.title }}
Members: {% for el in attribute.atomsgroup_set.all|dictsort:"prog" %} {% endfor %}
NameTitleOrder Id
{{ el.name }} {{ el.title }} {{ el.prog }}
{% endif %} {% endblock body %} {% block extra_script %} {{block.super}} {% endblock extra_script %}