{% extends "base.html" %} {# Copyright The IETF Trust 2015, All Rights Reserved #} {% load origin static %} {% block pagehead %} {% endblock %} {% block title %} {{type.label|cut:"state"|cut:"state"}} states{% endblock %} {% block content %} {% origin %}

{{type.label|cut:"state"|cut:"State"}} states

{% for state in states %} {% endfor %}
State Description Next states
{{ state.name }} {{ state.desc|safe }}
    {% for s in state.next_states.all %}
  • {{ s.name }}
  • {%endfor%}
{% endblock %} {% block js %} {% endblock %}