{% if f.has_content %}
{{ f.content }}
{% endif %}
- URL
- {{ f.url | escape }}
- HTTP Method
{% for mt in f.method %}{{ mt }} {% endfor %}
{% if f.url_params %}
- URL Parameters
-
Name |
Type |
Description |
{% for k, v in f.url_params.items() %}
{% for col in v %}
{{ col }} |
{% endfor %}
{% endfor %}
{% endif %}
{% if f.query_params %}
- QueryString
-
Name |
Require |
Type |
Description |
{% for row in f.query_params %}
{% for col in row.get_arr()%}
{{ col }} |
{% endfor %}
{% endfor %}
{% endif %}
{% if f.json_body %}
- Json Body
-
{{ f.json_body }}
{% else %}
{% if f.form_params %}
- Forms
-
Name |
Require |
Type |
Description |
{% for row in f.form_params %}
{% for col in row.get_arr()%}
{{ col }} |
{% endfor %}
{% endfor %}
{% endif %}
{% endif %}
- Return Value
-
{{ f.return_value() }}