Skip to content

Commit 4d2fdb0

Browse files
committed
Additional fix for adamlaska#151, not linking to retracted disclosures.
- Legacy-Id: 722
1 parent 593ae23 commit 4d2fdb0

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

ietf/templates/ipr/details.html

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,14 @@ <h3>{{ ipr.title }}</h3>
6262
<font size="3">
6363
<br>
6464
This IPR disclosure updates IPR disclosure ID #{{ item.updated.ipr_id }},
65-
{% ifequal item.updated.status_to_be 1 %}
65+
{% ifequal item.updated.status 0 %}
6666
"<a href="{% url ietf.ipr.views.show item.updated.ipr_id %}">{{ item.updated.title }}</a>".
6767
{% else %}
68-
"{{ item.updated.title }}", which was removed at the request of the submitter.
68+
{% ifequal item.updated.status 1 %}
69+
"<a href="{% url ietf.ipr.views.show item.updated.ipr_id %}">{{ item.updated.title }}</a>".
70+
{% else %}
71+
"{{ item.updated.title }}", which was removed at the request of the submitter.
72+
{% endifequal %}
6973
{% endifequal %}
7074
<br>
7175
</font>

0 commit comments

Comments
 (0)