{% extends "admin/base_site_mako.html" %}
{% if not is_popup %}
{% block block_breadcrumbs %}
{{tool.display_name}}
{% if not tool.enabled %}
(DISABLED)
{% endif %}
- Tool Definition
Name |
Display Name |
Job Type |
Path |
|
{{tool.name}} |
{{tool.display_name}} |
{{tool.backend}} |
{{tool.path}} |
Edit |
View JSON |
Accepts Input |
{% if tool.accepts_input %}
Yes
{% else %}
No
{% endif %}
|
Description
{{tool.description}}
{% if tool.tooloutputextension_set.all %}
Tool output extensions
{% for outext in tool.tooloutputextension_set.all %}
- {{outext.file_extension.pattern}}
{% if outext.must_exist or outext.must_be_larger_than %}
-
{% endif %}
{% if outext.must_exist %}
must exist
{% endif %}
{% if outext.must_exist and outext.must_be_larger_than %}
and
{% endif %}
{% if outext.must_be_larger_than %}
must be larger than {{outext.must_be_larger_than}}
{% endif %}
{% endfor %}
{% endif %}
Tool parameters
Rank |
Switch |
Switch use |
Properties |
{% for param in tool_params %}
{{param.rank}} |
{{param.switch}} |
{{param.switch_use}} |
{% for prop in param.properties %}
- {{prop}}
{% endfor %}
|
{% endfor %}
{% endblock %}