{% extends "administration/base.html" %} {% load i18n %} {% load humanize %} {% load authentik_utils %} {% block content %}

{% trans 'Outpost Service-Connections' %}

{% trans "Outpost Service-Connections define how authentik connects to external platforms to manage and deploy Outposts." %}

{% if object_list %}
{% include 'partials/toolbar_search.html' %}
{% include 'partials/pagination.html' %}
{% for sc in object_list %} {% endfor %}
{% trans 'Name' %} {% trans 'Type' %} {% trans 'Local?' %} {% trans 'Status' %}
{{ sc.name }} {{ sc|verbose_name }} {{ sc.local|yesno:"Yes,No" }} {% if sc.state.healthy %} {{ sc.state.version }} {% else %} {% trans 'Unhealthy' %} {% endif %} {% trans 'Edit' %}
{% trans 'Delete' %}
{% include 'partials/pagination.html' %}
{% else %}
{% include 'partials/toolbar_search.html' %}

{% trans 'No Outpost Service Connections.' %}

{% if request.GET.search != "" %} {% trans "Your search query doesn't match any outposts." %} {% else %} {% trans 'Currently no service connections exist. Click the button below to create one.' %} {% endif %}
{% endif %}
{% endblock %}