{% extends "wooey/base.html" %} {% load i18n %} {% load wooey_tags %} {% block breadcrumbs %}
  • {{ script.script_name }}
  • {% endblock %} {% block left_sidebar %}{% endblock left_sidebar %} {% block center_content_class %}col-md-12 col-xs-12{% endblock center_content_class %} {% block center_content %}
    {% if script.documentation %}
    {% trans "Documentation" %}
    {{ script.documentation }}
    {% endif %}
    {% csrf_token %} {{ form.wooey_form }}
    {% if form.parsers|length != 1 %}
    {% else %}
    {% trans "Settings" %}
    {% endif %}
    {% for parser_info, parser_groups in form.parsers.items %} {% with parser_pk=parser_info.0 parser_name=parser_info.1 %}
    {% endwith %} {% endfor %}
    {% for parser_info, parser_groups in form.parsers.items %} {% with parser_pk=parser_info.0 parser_name=parser_info.1 first_parser=forloop.first %} {% for group in parser_groups %} {% with group_slug=group.group_name|slugify first_group=forloop.first %}
    {% for field in group.form %}
    {{ field.errors }} {% if not field.is_hidden %} {% endif %} {{ field }} {% if not field.is_hidden %}

    {{ field.help_text }}

    {% endif %}
    {% endfor %}
    {% endwith %} {% endfor %} {% endwith %} {% endfor %}
    {% trans "Metadata" %}
    {% endblock center_content %} {% block inline_js %} {{ block.super }} {% endblock inline_js %}