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

{% trans "TAXONOMY STRUCTURE - ATOMS" %}

{% else %}

{% trans "TAXONOMY STRUCTURE" %}

{% trans "ATOM" %}: {% trans atom.title %}

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

Hierarchy

All Attributes

All Atoms Groups

All Atoms


{% for atom in atoms %} {% endfor %}
Name Title
{{ atom.name }} {{ atom.title }}
{% else %}

Hierarchy

{{ atom.group.attr.title }} (or all Attributes)

{{ atom.group.title }} (or all Atoms Groups)

All Atoms


{% if atom.desc != '' %} {% endif %} {% if atom.args != None %} {% endif %} {% if atom.params != None %} {% endif %}
Name: {{ atom.name }}
Title:{{ atom.title }}
Description:{{ atom.desc }}
Arguments: {% for key, value in atom.args.items %} {% endfor %}
{{ key }}:{{ value }}
Parameters: {% for key, value in atom.params.items %} {% endfor %}
{{ key }}:{{ value }}
Type: {% for key, value in atom.entry_type.items %} {% endfor %}
{{ key }}:{{ value }}
Enabled by: {% if atom.deps.all %} {% for el in atom.deps.all|dictsort:"prog" %} {% endfor %}
NameTitleOrder Id
{{ el.name }} {{ el.title }} {{ el.prog }}
{% else %} Always visible {% endif %}
Enabling: {% if atom.revdeps.all %} {% for el in atom.revdeps.all|dictsort:"prog" %} {% endfor %}
NameTitleOrder Id
{{ el.name }} {{ el.title }} {{ el.prog }}
{% else %} {% if atom.params.type == 'options' %} {% if atom.param_set != None %} {% for el in atom.param_set.all|dictsort:"prog" %} {% endfor %}
{{atom.name}}:{{ el.name }} {{ el.title }}
{% endif %} {% else %} Is a hierarchy leaf. {% endif %} {% endif %}
{% endif %} {% endblock body %} {% block extra_script %} {{block.super}} {% endblock extra_script %}