{% extends "base.html" %} {% block title %}REST Interface{% endblock %} {% block nav1 %}rest{% endblock %} {% block smallheader %}rest{% endblock %} {% block largeheader %}{{ module_path }}{% endblock %} {% block toolbar %}{% endblock %} {% block content %} {% if module_documenation %}

The following is the documentation for the {{ module_path }} module:

{{ module_documenation }}
{% else %} This module has no documentation. {% endif %}
{% if gets %}

Supported GET operations:

{% for i in gets %} {% endfor %}
{{ i }} txt json xml
{% endif %}

Supported POST operations

{% for i in puts %} {% endfor %}
{{ i }} txt json xml
{% endblock %}