{% trans "Outposts are deployments of passbook components to support different environments and protocols, like reverse proxies." %}
{% trans 'Name' %} | {% trans 'Providers' %} | {% trans 'Health' %} | {% trans 'Version' %} | |||
---|---|---|---|---|---|---|
{{ outpost.name }} | {{ outpost.providers.all.select_subclasses|join:", " }} | {% with states=outpost.state %} {% if states|length > 0 %}
{% for state in states %}
{% if state.last_seen %}
{{ state.last_seen|naturaltime }}
{% else %}
{% trans 'Unhealthy' %}
{% endif %}
{% endfor %}
|
{% for state in states %}
{% if not state.version %}
{% elif state.version_outdated %}
{% blocktrans with is=state.version should=state.version_should %}{{ is }}, should be {{ should }}{% endblocktrans %}
{% else %}
{{ state.version }}
{% endif %}
{% endfor %}
|
{% else %}
{% endif %} {% endwith %} |
|