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:
Henrik Levkowetz 2015-11-07 21:59:58 +00:00
commit 84860d87f7

View file

@ -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>