We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d97c29f commit 7e39db8Copy full SHA for 7e39db8
1 file changed
ietf/templates/help/state_index.html
@@ -23,10 +23,10 @@ <h1>Document state index</h1>
23
{% for type in types %}
24
{% if type.stategroups != None %}
25
<tr>
26
- <td><a href='{{ type.slug }}/'>{{type.slug}}</a></td>
+ <td><a href="{% url 'ietf.help.views.state' doc=type.slug %}">{{type.slug}}</a></td>
27
<td>
28
{% for group in type.stategroups %}
29
- <a href='{{ type.slug }}/{{ group }}'>{{ group }}</a>{% if not forloop.last %}, {% endif %}
+ <a href="{% url 'ietf.help.views.state' doc=type.slug type=group %}">{{ group }}</a>{% if not forloop.last %}, {% endif %}
30
{% endfor %}
31
</td>
32
</tr>
0 commit comments