{% extends "mini_buildd/base.html" %} {% block title %}{% block titledup %}{% if request.GET.call %}API call {{ request.GET.call }}{% else %}API call index{% endif %}{% endblock %}{% endblock %} {% block menu %}
  • Top
  • {% endblock %} {% block content %} {% if request.GET.call %} {% mbd_api request.GET.call verbose=True %} {% else %} {% for category in mbd.api.Call.CATEGORIES %}

    {{ category }}

    {% for call in mbd.api.CALLS.values %} {% if call.category == category %}
    {{ call.name }}: {{ call.doc_title }} Isolate
    {% mbd_api call verbose=True %}
    {% endif %} {% endfor %}
    {% endfor %} {% endif %} {% endblock %}