{{ uri }}
[{{ info.url_name }}]
{% for m in info.allowed_methods %}{{ m }} {% endfor %}
{% if info.doc %}
{{ info.doc|linebreaksbr }}
{% endif %}
{% if info.model %}
- Resource:
{{ info.model.name }}
{% for f in info.model.fields %}
{{ f.name }} |
{{ f.get_internal_type }} |
{{ f.help_text }} |
{% endfor %}
{% endif %}
- Authentication:
- {% for a in info.auth %} {{ a }} {% endfor %}
- Emmiters:
- {{ info.emitters }}
{% if info.fields %}
Form data
{% for f, v in info.fields %}
{{ f }} |
{{ v.label }}. {{ v.help }} |
{% endfor %}
{% endif %}
{% if info.methods %}
RPC methods
{% for name, inspect in info.methods.items %}
{{ name }} |
{{ inspect.args }} |
{% endfor %}
{% endif %}