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

{% trans 'Outposts' %}

{% trans "Outposts are deployments of passbook components to support different environments and protocols, like reverse proxies." %}

{% if object_list %}
{% include 'partials/pagination.html' %}
{% for outpost in object_list %} {% endfor %}
{% trans 'Name' %} {% trans 'Providers' %} {% trans 'Health' %}
{{ outpost.name }} {{ outpost.providers.all.select_subclasses|join:", " }} {% with health=outpost.health %} {% if health %} {{ health|naturaltime }} {% else %} Unhealthy {% endif %} {% endwith %} {% trans 'Edit' %} {% trans 'Delete' %} {% trans 'Deploy' %}
{% include 'partials/pagination.html' %}
{% else %}

{% trans 'No Outposts.' %}

{% trans 'Currently no outposts exist. Click the button below to create one.' %}
{% trans 'Create' %}
{% endif %}
{% endblock %}