{# Close Button #}
{% with title=method.name, modal_id="method-" + method_id + "-modal" %}
{% include "modals/_title_bar.html" %}
{% endwith %}
{# Request Form #}
{% for param in method.params %}
{% with schema=param.schema_,
minimalize=True,
param_id=loop.index0,
input_id=method_id + id(loop.index0),
label=param.name %}
{% include "schema_form/form.html" %}
{% endwith %}
{% endfor %}
{# Get Form Value Function #}