{% extends "base.html" %} {% load compress humanize static hc_extras %} {% block title %}Add Shell Command - {% site_name %}{% endblock %} {% block content %}

Shell Command

Executes a local shell command when a check goes up or down.

You can use placeholders $NAME, $STATUS and others (quick reference).


{% csrf_token %}
{% if form.cmd_down.errors %}
{{ form.cmd_down.errors|join:"" }}
{% endif %}
{% if form.cmd_up.errors %}
{{ form.cmd_up.errors|join:"" }}
{% endif %}


{% endblock %}