Merged in [10426] from rjsparks@nostrum.com:
Fix the links on the state help index page. Fixes #1775.
- Legacy-Id: 10441
Note: SVN reference [10426] has been migrated to Git commit 7e39db81ea
This commit is contained in:
commit
84860d87f7
|
@ -23,10 +23,10 @@
|
||||||
{% for type in types %}
|
{% for type in types %}
|
||||||
{% if type.stategroups != None %}
|
{% if type.stategroups != None %}
|
||||||
<tr>
|
<tr>
|
||||||
<td><a href='{{ type.slug }}/'>{{type.slug}}</a></td>
|
<td><a href="{% url 'ietf.help.views.state' doc=type.slug %}">{{type.slug}}</a></td>
|
||||||
<td>
|
<td>
|
||||||
{% for group in type.stategroups %}
|
{% for group in type.stategroups %}
|
||||||
<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 %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
Loading…
Reference in a new issue