{% extends "site_base.html" %} {% load i18n %} {% block title %}{% if atoms_group == None %}Taxonomy Structure - Atoms Groups{% else %}Taxonomy Structure - Atoms Group: {{ atoms_group.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 atoms_group == None %}

{% trans "TAXONOMY STRUCTURE - ATOMS GROUPS" %}

{% else %}

{% trans "TAXONOMY STRUCTURE" %}

{% trans "ATOMS GROUP" %}: {% trans atoms_group.title %}

{% endif %}
{% endblock oq_body_heading %} {% if atoms_group == None %}
Hierarchy

All Attributes

All Atoms Groups

All Atoms


{% for atoms_group in atoms_groups%} {% endfor %}
Name Title Order Id
{{ atoms_group.name }} {{ atoms_group.title }} {{ atoms_group.prog }}
{% else %}
Hierarchy

{{ atoms_group.attr.title }} (or All Attributes)

All Atoms Groups

All Atoms


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