{% extends 'layout.html' %} {% block content %} Connected to:
Host: {{host}}
Port {{port}}
Over HTTP: {{http}}

{% for func in functions %}
{{func['name_with_params']}}

{{func['description']}}

Params:

{% for param in func['params'] %} {% endfor %}
{{param['name']}} {{param['type']}} {{param['description']}}

Returns: {{func['result_type']}} - {{func['result_desc']}}



{% endfor %} {% endblock %}