{% extends "hobo/base.html" %} {% load i18n service %} {% block appbar %}

{% trans 'Environment Settings' %}

{% endblock %} {% block content %}

{% trans 'Variables' %}

{% for variable in variables %}

{% endfor %}

{% trans 'Services' %}

{% trans 'Add new service:' %}

{% for service in installed_services %}

{{ service.title }}

{% if not service.is_operational %} {% if service.wants_frequent_checks %}

{% trans 'This service is still being deployed.' %}

{% else %}

{% trans 'This service is not operational.' %}

{% endif %} {% endif %}

{% csrf_token %} {{ service|as_update_form }}
{% endfor %} {% endblock %} {% block page-end %} {% endblock %}