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

{% blocktrans %}The following is the documentation for the {{ module_path }} module:{% endblocktrans %}

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

{% trans "Supported GET operations:" %}

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

{% trans "Supported POST operations" %}

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