{% extends "layouts/base.html" %} {% block title %} Entries {% endblock %} {% block stylesheets %} {% endblock stylesheets %} {% block content %}
Table entries
{% if errors %}
{% for error in errors %}

{{ error }}

{% endfor %}

{% endif %}
{% for table in tables %}
{{ table.name | safe }} {% if table.type == 'lpm' %} {% endif %} {% for entry in table.entries %} {% if table.type == 'lpm' %} {% endif %} {% endfor %} {% if table.editable %} {% endif %}
MatchPrefixAction Params
{{ entry.match | safe }}{{ entry.mask | safe }}{{ entry.action | safe }} {{ entry.params | safe }} {% if table.editable %}
{% endif %}
{% endfor %}
{% endblock content %} {% block javascripts %}{% endblock javascripts %}