{% extends "base.html" %} {% block title %}{{ lang.words.overview|title() }} {{ lang.words.country }}{% endblock %} {% block h2 %}{{ lang.words.overview|title() }} {{ lang.words.country }}{% endblock %} {% block content %} {% from 'include/input_macros.html' import input, select, checking_types %}
{{country.name.replace("'","")}} {% if country.description %} ({{country.description.replace("'", "")}}) {% endif %} {% if g.user_params['group_id']|string() == country.group_id|string() or g.user_params['role'] == 1 %} {% if g.user_params['role'] <= 2 %} {% endif %} {% endif %}
{{ lang.words.country|title() }} ID: {{ country.id }} {{ lang.smon_page.desc.total_checks }}:
{{ lang.words.enabled|title() }}: {% if country.enabled %} {{ lang.words.yes|title() }} {% else %} {{ lang.words.no|title() }} {% endif %} {{ lang.words.shared|title() }}: {% if country.shared %} {{ lang.words.yes|title() }} {% else %} {{ lang.words.no|title() }} {% endif %}
{{ lang.words.regions|title() }}:
{% for region in regions %}
{{region.name.replace("'", "")}}
{% endfor %}
{{ lang.words.regions|title() }}:
{% for region in regions %} {% endfor %}
{% include 'include/smon/checks_for_overview.html' %} {% include 'include/smon/dialogs.html' %} {% include 'include/smon/add_form.html' %} {% endblock %}