{% extends "admin/base_site.html" %} {% load i18n %} {% block extrastyle %}{{ block.super }}{% endblock %} {% block coltype %}colMS{% endblock %} {% block bodyclass %}dashboard{% endblock %} {% block breadcrumbs %}{% endblock %} {% block content %}

{{ heading }}

{{ instructions }}

{% csrf_token %} {{ signalform.as_p}} {{ form.as_p }}
{% if testdone %} Testing the signal handling resulted in the following:

{% if matched %} Pattern matched the signal {% else %} Pattern did not match the signal {% endif %}

{% if parsed %} The following variables was parsed:

    {% for p in parsed %}
  1. {{ p }}
  2. {% endfor %}
{% else %} No variables was parsed {% endif %} {% endif %} {% endblock %} {% block sidebar %} {% endblock %}