|
|
{% if mode == "webserver" %}
|
|
{% endif %}
New alignment
Plot alignment
Batch alignments
|
{# Tab 1 #}
{% set fnote_tab = fnote %}
|
|
|
|
{% if tools | length > 1 %}
|
{% for tool in tools_names %}
{% endfor %}
|
{% else %}
{% for tool in tools_names %}
{% endfor %}
|
{% endif %}
{% if tools | length > 1 %}
{% for tool in tools_names %}
{% set tool_loop = loop %}
|
{% if tools[tool].options %}
{% for opt in tools_options[tool] %}
{% set outer_loop = loop %}
{{ opt.label }} 
|
{% for entry in opt['entries'] %}
{% endfor %}
|
{% endfor %}
{% endif %}
{% endfor %}
{% else %}
{% set tool = tools_names[0] %}
|
{% if tools[tool].options %}
{% for opt in tools[tool].options %}
{{ opt.label }} 
|
{% for entry in opt['entries'] %}
{% endfor %}
|
{% endfor %}
{% endif %}
{% endif %}
{# Tab 2 #}
{% set fnote_tab = fnote %}
|
|
|
|
|
|
- or -
|
|
|
{# Tab 3 #}
{% set fnote_tab = fnote %}
|
|
Possible values for tool and options keys
|
Tool |
Option ids (to use with options=){{ fnote_tab }}{% set fnote_tab = fnote_tab + 1 %} |
{% for tool in tools_names %}
{{ tools[tool].label | capitalize }}
({% if loop.index0 == 0 %}{% endif %}tool={{ tool }})
|
{% if tools[tool].options %}
{% for opt in tools[tool].options %}
{% set outer_loop = loop %}
- {{ opt.label }}{% if opt.type == "radio" %} (mutually exclusive){% endif %}:
{% for entry in opt['entries'] %}
- {{ outer_loop.index0 }}-{{ loop.index0 }}: {{ entry.label }} 
{% endfor %}
{% endfor %}
|
{% else %}
No option |
{% endif %}
{% endfor %}