{% extends "base.html" %} {% load l10n %} {% block content %}
{% if config.help %}
{{ config.help|linebreaksbr }}
{% endif %}

{{ config.title }}

{% csrf_token %} {% for arg in config.args %}
{% if arg.type == "file" %}
{% elif arg.type == "organism" %} {% elif arg.type == "ontology" %} {% if arg.multiple %}
{% for ont in arg.options %}
{% endfor %}
{% else %} {% endif %} {% elif arg.type == "soterm" %} {% elif arg.type == "uploaded_file" %} {% elif arg.type == "checkbox" %}
{% elif arg.type == "doi" %} {% elif arg.type == "choice" %} {% else %} {% endif %} {% if arg.help %} {{ arg.help }} {% endif %}
{% endfor %}
{% endblock %}