{% extends "admin/index.html" %}
{% load i18n staticfiles %}
{% comment %}
Copyright 2010 Canonical Ltd. This software is licensed under the
GNU Affero General Public License version 3 (see the file LICENSE).
{% endcomment %}
{% block breadcrumbs %}
{% trans "Readonly status per application server" %}
{% for server in appservers %}
{{server.name}}
{{server.state}}
{% if server.reachable %}
{% if server.readonly %}{% trans "In readonly mode" %}
- {% trans "Manually disabled" %}
|
{% trans "Leave readonly" %}
|
{% else %}
{% trans "Operating normally" %}
{% trans "Set readonly" %}
|
{% endif %}
{% else %}{% trans "Server is unreachable or out of sync" %}
|
{% endif %}
{% endfor %}
{% if clear_all_readonly %}
{% trans "Leave readonly on all appservers" %}
{% endif %}
{% if set_all_readonly %}
{% trans "Set readonly on all appservers" %}
{% endif %}
{% endblock %}
{% block sidebar %}{% endblock %}