{% extends "generic/object.html" %} {% block content %} {% for svc in services %}
{{ svc.name }} {% if can_change_server and svc.enable_url %}
Enable Disable {% if svc.options_url %} Edit Options {% endif %}
{% endif %}
{% if svc.status_data %} {% for k, v in svc.status_data.items %} {% endfor %} {% else %} {% endif %}
{{ k }} {% if k == "Version" %}{{ v }}{% else %}{{ v }}{% endif %}
No status data available.
{% endfor %} {% if global_options %} {% for label, opts in global_options.items %}
{{ label }}: Global Options
{% for k, v in opts.items %} {% endfor %}
{{ k }} {{ v }}
{% endfor %} {% endif %} {% endblock %}