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

{% trans 'Outpost Service-Connections' %}

{% trans "Outpost Service-Connections define how passbook 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 %}
{% 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 %}