{% extends "bootstrap/base.html" %} {% import "apidoc/nav.html" as nav %} {% block scripts -%} {{ super() }} {% endblock %} {% block styles -%} {{ super() }} {% endblock styles %} {% block content %} {{ nav.nav() }}
{% for name, task in tasks.items() | sort %} {% set id = name | replace(".", "-") %} {% set metadata = task._get_metadata() %}

{{ name }}( {% for arg in prepare_args(call_args(task, "run").args, metadata.schema) %} {% if arg.reference %} {{ arg.type }} {% elif arg.type %} {{ arg.type }} {% endif %} {{ arg.name }}{% if not loop.last %},{% endif %} {% endfor %} )

{{ metadata.description }}

{{ metadata.schema | json }}
{% endfor %}
{% endblock %}