{% if f.has_content %}
{{ f.content }}
{% endif %}
- URL
- {{ f.url | escape }}
- HTTP Method
- {{ f.method }}
{% if f.url_params %}
- URL Parameters
-
Name |
Type |
Description |
{% for k, v in f.url_params.iteritems() %}
{% for col in v %}
{{ col }} |
{% endfor %}
{% endfor %}
{% endif %}
{% if f.query_params %}
- QueryString Parameters
-
Name |
Require |
Type |
Description |
{% for row in f.query_params %}
{% for col in row%}
{{ col }} |
{% endfor %}
{% endfor %}
{% endif %}
{% if f.form_params %}
- Form Parameters
-
Name |
Require |
Type |
Description |
{% for row in f.form_params %}
{% for col in row%}
{{ col }} |
{% endfor %}
{% endfor %}
{% endif %}
- Return Value
-
{{ f.return_value() }}