{% extends "base.html" %} {% load i18n %}{% load bootstrap %} {% block content %}

{% trans "Your updater configurations for other services" %}

{% for uc in updater_configs %} {% empty %} {% endfor %}
{% trans "Service" %} {% trans "Host" %} {% blocktrans with type=_("IPv4") %}give {{ type }}{% endblocktrans %} {% blocktrans with type=_("IPv6") %}give {{ type }}{% endblocktrans %} {% trans "Comment" %}
{{ uc.service.name }} (TLS: {{ uc.service.secure|yesno }}) {{ uc.hostname }} {{ uc.give_ipv4|yesno }} {{ uc.give_ipv6|yesno }} {{ uc.comment }}
{% trans "No other services to update yet." %}

{% trans "Create a new updater configuration" %}

{% csrf_token %} {{ form|bootstrap }}

{% trans "Help" %}

{% trans "Here you can add new configurations for 3rd party services you like to get updated." %}

{% trans "We will send an update to them each time you update your host with us." %}

{% endblock %}