Skip to content

Commit c90d0e7

Browse files
committed
Added different handling for specific and generic disclosures.
- Legacy-Id: 581
1 parent 3ba8f23 commit c90d0e7

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

ietf/templates/ipr/search_holder_result.html

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,11 @@
1515
{% for ipr in iprs %}
1616
<tbody bgcolor="#{% cycle dadada,eaeaea as bgcolor %}">
1717
<tr valign="top">
18-
<td colspan="3">IPR that was submitted by <b><i>{{ q }}</i></b>, and is related to
18+
<td colspan="3">IPR that was submitted by <b><i>{{ q }}</i></b>
19+
{% if ipr.generic %}
20+
, and is not related to a specific IETF contribution.
21+
{% else %}
22+
, and is related to
1923
{% for doc in ipr.drafts.all %}
2024
{% ifnotequal ipr.drafts.count 1 %}{% ifequal doc ipr.last_draft %}<b> and </b>{% endifequal %}{% endifnotequal %}
2125
<b><i>{{ doc.document }}, "{{ doc.document.title }},"</i></b>
@@ -24,6 +28,7 @@
2428
{% ifnotequal ipr.rfcs.count 1 %}{% ifequal doc ipr.last_rfc %} and {% endifequal %}{% endifnotequal %}
2529
<b><i>{{ doc.document }}, "{{ doc.document.title }},"</i></b>
2630
{% endfor %}
31+
{% endif %}
2732
</td>
2833
</tr>
2934
<tr valign="top">

0 commit comments

Comments
 (0)