{% extends "boards/base.html" %} {% load staticfiles %} {% load i18n %} {% block javascript %} {% endblock javascript %} {% block css %} {% endblock css %} {% block content %}

{{ service.name }}

{% trans "Full history" %} {% trans "Edit service" %}

{% trans "Base info" %}

{% trans "Param" %} {% trans "Value" %}
{% trans "Name" %} {{ service.name }}
{% trans "Url" %} {{ service.url }}
{% trans "Sensitivity" %} {{ service.sensitivity|floatformat:2 }}
{% trans "Expected response code" %} {{ service.response_code }}
{% trans "Perfomance issues time" %} {{ service.performance_issues_time }}
{% trans "Connection timeout" %} {{ service.connection_timeout }}
{% trans "Base USERAGENT" %} {{ service.base_useragent }}
{% trans "Base REFERER" %} {{ service.base_referer }}
{% trans "Time delta" %} {{ service.time_delta }}
{% trans "Is core service?" %} {{ service.is_core_service|yesno }}
{% trans "Hosting?" %} {{ service.hosting|yesno }}
{% trans "7 days SLA" %} {{ sla.sla7days }}%
{% trans "1 month SLA"%} {{ sla.sla1month }}%
{% trans "3 months SLA"%} {{ sla.sla3months }}%
{% if service.comments %}

{% trans "Comments" %}

{{ service.comments }}
{% endif %}

{% trans "Monitored phrases" %}

{% if phrases %} {% for p in phrases %} {% endfor %}
{% trans "Phrase" %} {% trans "Shall not be" %}
{{ p.phrase }} {{ p.shall_not_be|yesno }}
{% else %}

{% trans "List is empty..." %}

{% endif %}

{% trans "Additional request params" %}

{% if params %} {% for param in params %}

{{ param.name }}

{% trans "Param" %} {% trans "Value" %}
{% trans "USERAGENT" %} {{ param.useragent }}
{% trans "REFERER" %} {{ param.referer }}
{% trans "GET" %} {{ param.get }}
{% trans "POST" %} {{ param.post }}
{% endfor %} {% else %}

{% trans "List is empty..." %}

{% endif %}

{% trans "Last hour response time" %}

{% for group in probes %}
{% endfor %}

{% trans "Other last hour times" %}

{% for group in probes %}
{% endfor %}
{% include "boards/history_table.html" %} {% endblock content %}