{% extends 'base.html' %}
{% block title %}Services{% endblock %}
{% block body %}
{% if registry %}
{% for item in registry %}
{{item.0}}: {{item.1}}
{% if item.2.methods %}
{% for method in item.2.methods %}
{{ method.name }}
{% endfor %}
{% else %}
Service has no remote methods.
{% endif %}
{% endfor %}
{% else %}
There are no services registered here.
{% endif %}
{% endblock %}