123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- {% extends "base.html" %}
- {% load staticfiles %}
- {% load add_get_parameter %}
- {% block titlemore %}/States{% endblock %}
- {% block h1more %}/States{% endblock %}
- {% block body %}
- <form action="" method="get">
- <table border=1>
- <tr>
- <th style="text-align:center;">Statistics</th>
- <th style="text-align:center;">Links</th>
- </tr>
- <tr>
- <td>
- </td>
- <td>
- <ul>
- <li><a href="{% url "state_index" %}">States</a>
- </ul>
- <ul>
- <li><a href="{% url "trap_index" %}">Traps</a>
- </ul>
- </td>
- </tr>
- </table>
- </form>
- <table border=1 width="100%">
- <!-- Previous - Next -->
- <tr><td colspan=4>
- {% include "snippet_obj_prev_next.html" with objs=cfgstate objcount=cfgstatecount objname="State configs" %}
- </td></tr>
- <!-- Header line -->
- <tr>
- <th class="status" width="25%">State name</th>
- <th class="status" width="25%">Start event</th>
- <th class="status" width="25%">Stop event</th>
- <th class="status" width="25%">Varbind Sub</th>
- </tr>
- <!-- CfgStates as table row -->
- {% include "states/snippet_cfgstate_as_tr.html" %}
- <!-- Previous - Next -->
- <tr><td colspan=4>
- {% include "snippet_obj_prev_next.html" with objs=cfgstate objcount=cfgstatecount objname="State configs" %}
- </td></tr>
- </form>
- </table>
- {% endblock %}
|