32 lines
583 B
HTML
32 lines
583 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}{{ title }} States{% endblock %}
|
|
|
|
{% block morecss %}
|
|
.state_column {
|
|
width: 13em;
|
|
}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>{{ title }} States</h1>
|
|
|
|
<table class="ietf-table">
|
|
|
|
<tr>
|
|
<th class="state_column">State</th>
|
|
<th>Description</th>
|
|
</tr>
|
|
|
|
<tr class="{% cycle oddrow,evenrow as cycle1 %}"></tr>
|
|
{% for state in states %}
|
|
<tr class="{% cycle cycle1 %}">
|
|
<td>{{ state.name|escape }}</td>
|
|
<td>{{ state.desc|escape }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
|
|
{% endblock %}
|