{% extends "base.html" %} {% load i18n %} {% block extrahead %} {% endblock %} {% block title %}{% trans "My rules" %}{% endblock %} {% block content %}

{% trans "My rules" %}

Add Rule
{% comment %}{% endcomment %} {% for route in routes %} {% comment %}{% endcomment %} {% endfor %}
{% trans "Name" %} {% trans "Match" %} {% trans "Then" %} {% trans "Status" %}{% trans "Details" %}{% trans "Applier" %} {% trans "Expires" %} {% trans "Response" %} {% trans "Actions" %}
{{ route.name }} {{ route.get_match|safe|escape }} {{route.get_then|safe|escape}} {{route.status}}{{ route.response }}{{ route.applier }} {{ route.expires }} {{ route.response }} {% ifequal route.status 'ACTIVE' %} Edit {% else %} {% ifequal route.status 'INACTIVE' %} Reactivate {% else %} {% ifequal route.status 'OUTOFSYNC' %} ReSync {% else %} - {% endifequal %} {% endifequal %} {% endifequal %}

You are about to delete rule

Deleting the rule will automatically remove the configuration from the network and mark this route as inactive.

Are you sure you want to proceed?

{% include "poll.html" %}
{% endblock %}