{% extends "whm/base.html" %} {% block title %}My Services{% endblock title %} {% block content %}

List of services

{% for custom_name, service in services.items %}

{{ custom_name }}

{% if service.status == 'active' %} Running {% elif service.status == 'inactive' %} Stopped {% else %} {{ service.status }} {% endif %}
{% if service.status == 'active' %} Restart Stop {% elif service.status == 'inactive' %} Play Restart {% else %} Play {% endif %}
{% endfor %}
{% endblock content %} {% include "whm/footer.html" %}