feat: Linkify state descriptions (#4916)
This commit is contained in:
parent
cab9b1c5e5
commit
c3e7c1e188
|
@ -1,6 +1,7 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
||||||
{% load origin static %}
|
{% load origin static ietf_filters textfilters %}
|
||||||
|
%}
|
||||||
{% block pagehead %}
|
{% block pagehead %}
|
||||||
<link rel="stylesheet" href="{% static "ietf/css/list.css" %}">
|
<link rel="stylesheet" href="{% static "ietf/css/list.css" %}">
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@ -20,7 +21,7 @@
|
||||||
{% for state in states %}
|
{% for state in states %}
|
||||||
<tr>
|
<tr>
|
||||||
<th scope="row">{{ state.name }}</th>
|
<th scope="row">{{ state.name }}</th>
|
||||||
<td>{{ state.desc|safe }}</td>
|
<td>{{ state.desc|urlize_ietf_docs|linkify }}</td>
|
||||||
<td>
|
<td>
|
||||||
<ul>
|
<ul>
|
||||||
{% for s in state.next_states.all %}
|
{% for s in state.next_states.all %}
|
||||||
|
|
Loading…
Reference in a new issue