{% extends "base_status.html" %} {% load i18n %} {% block title %}{% trans "Edit Check Command" %}{% endblock %} {% block smallheader %}{% trans "edit" %}{% endblock %} {% block largeheader %}{% trans "Check Command" %}{% endblock %} {% block nav1 %}{% trans "misc" %}{% endblock %} {% block toolbar %} {% endblock %} {% block content %} {% if form %}
{% if form.objects %} {% for i in form.objects %} {% for attribute, value in i.items %} {% endfor %} {% endfor %}
{% trans "Object Type" %} {% trans "Short Name" %}
{{ i.object_type }} {{ i.shortname }}
{{ attribute }} {{ value }}

Errors

{% for i in form.config.errors %} {% endfor %}
{% trans "Item" %} {% trans "Line number" %} {% trans "Detail" %}
{{ i.line_start }} {{ i.message }}
{% else %} {% endif %}

{% trans "Pasted string" %}

{% for line in form.pasted_string %} {% endfor %}
{{ forloop.counter }} {{ line }}

{% csrf_token %}

{% trans "Paste the output of a nagios plugin below" %}



{% endif %} {% endblock %} {% block footer %} {{ block.super }} {% endblock %}