{% extends "hobo/base.html" %} {% load i18n service %} {% block breadcrumb %} {{ block.super }} {% trans 'Sites' %} {% endblock %} {% block appbar %}

{% trans 'Sites' %}

{% endblock %} {% block content %}

{% trans 'Add new service:' %} {% for service in available_services %} {{ service.label }} {% endfor %}

{% for service in installed_services %}

{{ service.title }} [{{service.slug}}, {{service.base_url}}]

{% 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 }}

{% trans "Custom variables" %}

{% for variable in service.variables.all %} {% if not variable.auto %}

{% trans 'edit' %}

{% endif %} {% endfor %} {% trans 'Add new variable' %}
{% if service.legacy_urls %}

{% blocktrans trimmed count counter=service.legacy_urls|length %} Legacy URL {% plural%} Legacy URLS {% endblocktrans %}

{% endif%}
{% endfor %} {% endblock %} {% block page-end %} {% endblock %}