You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ietf/templates/ipr/details.html
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -72,7 +72,7 @@ <h1>{{ ipr.title|escape }}</h1>
72
72
{% endfor %}
73
73
74
74
{% for item in ipr.updated_by.all %}
75
-
{% ifequal item.processed 1 %}
75
+
{% if item.processed == 1 and item.ipr.status != 2 %}
76
76
<p>
77
77
This IPR disclosure has been updated by IPR disclosure ID #{{ item.ipr.ipr_id }},
78
78
{% ifequal item.status_to_be 1 %}
@@ -81,7 +81,7 @@ <h1>{{ ipr.title|escape }}</h1>
81
81
"{{ item.ipr.title|escape }}", which was removed at the request of the submitter.
82
82
{% endifequal %}
83
83
</p>
84
-
{% endifequal %}
84
+
{% endif %}
85
85
{% endfor %}
86
86
87
87
<p><ahref="{% url ietf.ipr.new.update ipr.ipr_id %}" rel="nofollow">Update this IPR disclosure</a>. Note: Updates to IPR disclosures must only be made by authorized
0 commit comments