Added different handling for specific and generic disclosures.
- Legacy-Id: 581
This commit is contained in:
parent
3ba8f23dfe
commit
c90d0e78f8
|
@ -15,7 +15,11 @@
|
|||
{% for ipr in iprs %}
|
||||
<tbody bgcolor="#{% cycle dadada,eaeaea as bgcolor %}">
|
||||
<tr valign="top">
|
||||
<td colspan="3">IPR that was submitted by <b><i>{{ q }}</i></b>, and is related to
|
||||
<td colspan="3">IPR that was submitted by <b><i>{{ q }}</i></b>
|
||||
{% if ipr.generic %}
|
||||
, and is not related to a specific IETF contribution.
|
||||
{% else %}
|
||||
, and is related to
|
||||
{% for doc in ipr.drafts.all %}
|
||||
{% ifnotequal ipr.drafts.count 1 %}{% ifequal doc ipr.last_draft %}<b> and </b>{% endifequal %}{% endifnotequal %}
|
||||
<b><i>{{ doc.document }}, "{{ doc.document.title }},"</i></b>
|
||||
|
@ -24,6 +28,7 @@
|
|||
{% ifnotequal ipr.rfcs.count 1 %}{% ifequal doc ipr.last_rfc %} and {% endifequal %}{% endifnotequal %}
|
||||
<b><i>{{ doc.document }}, "{{ doc.document.title }},"</i></b>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
|
|
Loading…
Reference in a new issue