{% 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 content %}
{% if request.GET.call %}
{% mbd_api request.GET.call verbose=True %}
{% else %}
{% for category in mbd.api.CATEGORIES %}
{{ category }}
{% for call in mbd.api.CALLS.values %}
{% if call.CATEGORY == category %}
{{ call.name }}: {{ call.doc_title }}
{% mbd_api call verbose=True %}
{% endif %}
{% endfor %}
{% endfor %}
{% endif %}
{% endblock %}