forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdetails_view.html
More file actions
794 lines (794 loc) · 33 KB
/
details_view.html
File metadata and controls
794 lines (794 loc) · 33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
{% extends "base.html" %}
{# Copyright The IETF Trust 2015, 2017. All Rights Reserved. #}
{% load origin %}
{% load ietf_filters ipr_filters textfilters %}
{% block title %}IPR Details - {{ ipr.title }}{% endblock %}
{% block pagehead %}
<meta name="description"
content="IPR disclosure #{{ ipr.ipr_id }}: {{ ipr.title }} ({{ ipr.time|date:'Y' }})">
{% endblock %}
{% block content %}
{% origin %}
<h1>
IPR Details
<br>
<small class="text-muted">{{ ipr.title }}</small>
</h1>
{% include "ipr/details_tabs.html" %}
<div class="buttonlist my-3">
{% if ipr.state_id == 'posted' %}
<a class="btn btn-primary"
href="{% url "ietf.ipr.views.update" ipr.id %}"
rel="nofollow">
Update this IPR disclosure
</a>
{% endif %}
{% if user|has_role:"Secretariat" %}
{# admin actions #}
{% if ipr.updates and ipr.state_id == 'pending' and not ipr.update_notified_date %}
<a class="btn btn-primary"
href="{% url 'ietf.ipr.views.notify' id=ipr.id type="update" %}"
title="Notify the submitter of IPR that is being updated">
Notify
</a>
{% endif %}
{% if ipr.updates and ipr.state_id == 'pending' and ipr.update_notified_date or not ipr.updates and ipr.state_id == 'pending' %}
<a class="btn btn-primary"
href="{% url 'ietf.ipr.views.post' id=ipr.id %}">
<i class="bi bi-check" aria-hidden="true"></i> Post
</a>
{% endif %}
<a class="btn btn-primary"
href="{% url 'ietf.ipr.views.email' id=ipr.id %}"
title="Email submitter of this disclsoure">
<i class="bi bi-envelope" aria-hidden="true"></i> Email
</a>
<a class="btn btn-primary"
href="{% url 'ietf.ipr.views.edit' id=ipr.id %}">Edit</a>
<a class="btn btn-primary"
href="{% url 'ietf.ipr.views.state' id=ipr.id %}">Change State</a>
{% endif %}
</div>
{% if not ipr.compliant %}
{% if in_force_ipr_rfc == 'RFC 8179' %}
<p class="alert alert-danger my-3">
This IPR disclosure does not comply with the formal requirements of Section 5,
"IPR Disclosures," of
<a href="https://www.rfc-editor.org/rfc/rfc8179.txt">RFC 8179</a>,
"Intellectual Property Rights in IETF Technology."
</p>
{% else %}
<p class="alert alert-danger my-3">
This IPR disclosure does not comply with the formal requirements of Section 6,
"IPR Disclosures," of
<a href="https://www.rfc-editor.org/rfc/rfc3979.txt">RFC 3979</a>,
"Intellectual Property Rights in IETF Technology."
</p>
{% endif %}
{% endif %}
{% if ipr.has_legacy_event %}
<p>
The text of the original IPR disclosure is available in the
<a href="{% url "ietf.ipr.views.history" id=ipr.id %}">disclosure history</a>.
</p>
{% endif %}
<div>
<strong>Submitted:</strong>
{{ ipr.time|date:"F j, Y" }} under the rules in {{ in_force_ipr_rfc|urlize_ietf_docs }}.
</div>
{% if user|has_role:"Secretariat" %}
<div>
<strong>State:</strong>
{{ ipr.state }}
</div>
{% endif %}
{% if ipr.state_id == 'posted' %}
<p class="alert alert-info my-3">
Note: Updates to IPR disclosures must only be made by authorized
representatives of the original submitters. Updates will automatically
be forwarded to the current Patent Holder's Contact and to the Submitter
of the original IPR disclosure.
</p>
{% endif %}
{% if updates_iprs or updated_by_iprs %}
<h2 class="mt-5">Updates</h2>
{% if updated_by_iprs %}
<dl class="row">
<dt class="col-sm-1">
Updated by
</dt>
<dd class="col-sm-11">
{% for item in updated_by_iprs %}
<div>
IPR Disclosure ID #{{ item.source.id }},
{% if item.source.state.slug == "removed" %}
"{{ item.source.title }}" (which was removed at the request of the submitter)
{% else %}
"<a href="{% url "ietf.ipr.views.show" id=item.source.id %}">{{ item.source.title }}</a>"
{% endif %}
</div>
{% endfor %}
</dd>
</dl>
{% endif %}
{% if updates_iprs %}
<dl class="row">
<dt class="col-sm-1">
Updates
</dt>
<dd class="col-sm-11">
{% for item in updates_iprs %}
<div>
IPR Disclosure ID #{{ item.target.id }},
{% if item.target.state.slug == "removed" %}
"{{ item.target.title }}" (which was removed at the request of the submitter)
{% elif item.target.state.slug == "rejected" %}
"{{ item.target.title }}" (which was rejected)
{% elif item.target.state.slug == "parked" %}
"{{ item.target.title }}"
{% else %}
"<a href="{% url "ietf.ipr.views.show" id=item.target.id %}">{{ item.target.title }}</a>"
{% endif %}
</div>
{% endfor %}
</dd>
</dl>
{% endif %}
{% endif %}
{% if user|has_role:"Secretariat" and ipr.update_notified_date %}
<div class="alert alert-info my-3">
This update was notified to the submitter of the IPR that is being updated on: {{ ipr.update_notified_date|date:"Y-m-d" }}
</div>
{% endif %}
<h2 class="mt-5">
{% cycle 'I' 'II' 'III' 'IV' 'V' 'VI' 'VII' 'VIII' as section %}.
{% if ipr|to_class_name == "ThirdPartyIprDisclosure" %}Possible{% endif %}
Patent Holder/Applicant ("Patent Holder")
</h2>
<table class="table table-sm table-striped">
{% if prev %}
<thead>
<tr class="text-center">
<th class="ipr-prev col-5">
{% if prev.state.slug == "posted" %}
Previous (<a href="{% url "ietf.ipr.views.show" id=prev.id %}">#{{ prev.id }}</a>)
{% else %}
Previous (#{{ prev.id }}, {{ prev.state }})
{% endif %}
</th>
<th></th>
<th class="col-5">This (#{{ ipr.id }})</th>
</tr>
</thead>
{% else %}
<thead>
<tr>
<th class="col-3"></th>
<th class="col-9"></th>
</tr>
</thead>
{% endif %}
<tbody>
<tr>
{% if prev %}<td class="ipr-prev">{{ prev.holder_legal_name }}</td>{% endif %}
<th class="ipr-label {% if prev %}text-center table-secondary{% endif %}">Holder legal name</th>
<td class="ipr-this">{{ ipr.holder_legal_name }}</td>
</tr>
</tbody>
</table>
{% if ipr.holder_contact_name or ipr.holder_contact_info %}
<h2 class="mt-5">{% cycle section %}. Patent Holder's Contact for License Application</h2>
<table class="table table-sm table-striped">
{% if prev %}
<thead>
<tr class="text-center">
<th class="ipr-prev col-5">
{% if prev.state.slug == "posted" %}
Previous (<a href="{% url "ietf.ipr.views.show" id=prev.id %}">#{{ prev.id }}</a>)
{% else %}
Previous (#{{ prev.id }}, {{ prev.state }})
{% endif %}
</th>
<th></th>
<th class="col-5">This (#{{ ipr.id }})</th>
</tr>
</thead>
{% else %}
<thead>
<tr>
<th class="col-3">
</th>
<th class="col-9">
</th>
</tr>
</thead>
{% endif %}
<tbody>
<tr>
{% if prev %}
<td class="ipr-prev">
{{ prev.holder_contact_name }}
</td>
{% endif %}
<th class="ipr-label {% if prev %}text-center table-secondary{% endif %}">
Holder contact name
</th>
<td class="ipr-this">
{{ ipr.holder_contact_name }}
</td>
</tr>
<tr>
{% if prev %}
<td class="ipr-prev">
{{ prev.holder_contact_email|linkify }}
</td>
{% endif %}
<th class="ipr-label {% if prev %}text-center table-secondary{% endif %}">
Holder contact email
</th>
<td class="ipr-this">
{{ ipr.holder_contact_email|linkify }}
</td>
</tr>
<tr>
{% if prev %}
<td class="ipr-prev">
{{ prev.holder_contact_info|linebreaks }}
</td>
{% endif %}
<th class="ipr-label {% if prev %}text-center table-secondary{% endif %}">
Holder contact info
</th>
<td class="ipr-this">
{% if ipr.holder_contact_info %}{{ ipr.holder_contact_info|linebreaks }}{% endif %}
</td>
</tr>
</tbody>
</table>
{% endif %}
{% if ipr.ietfer_name or ipr.ietfer_contact_email or ipr.ietfer_contact_info %}
<h2 class="mt-5">
{% cycle section %}. Contact Information for the IETF Participant Whose Personal Belief Triggered this Disclosure
</h2>
<table class="table table-sm table-striped">
{% if prev %}
<thead>
<tr class="text-center">
<th class="ipr-prev col-5">
{% if prev.state.slug == "posted" %}
Previous (<a href="{% url "ietf.ipr.views.show" id=prev.id %}">#{{ prev.id }}</a>)
{% else %}
Previous (#{{ prev.id }}, {{ prev.state }})
{% endif %}
</th>
<th>
</th>
<th class="col-5">
This (#{{ ipr.id }})
</th>
</tr>
</thead>
{% else %}
<thead>
<tr>
<th class="col-3">
</th>
<th class="col-9">
</th>
</tr>
</thead>
{% endif %}
<tbody>
<tr>
{% if prev %}
<td class="ipr-prev">
{{ prev.ietfer_name }}
</td>
{% endif %}
<th class="ipr-label {% if prev %}text-center table-secondary{% endif %}">
Name
</th>
<td class="ipr-this">
{{ ipr.ietfer_name }}
</td>
</tr>
<tr>
{% if prev %}
<td class="ipr-prev">
{{ prev.ietfer_contact_email|linkify }}
</td>
{% endif %}
<th class="ipr-label {% if prev %}text-center table-secondary{% endif %}">
Email
</th>
<td class="ipr-this">
{{ ipr.ietfer_contact_email|linkify }}
</td>
</tr>
<tr>
{% if prev %}
<td class="ipr-prev">
{{ prev.ietfer_contact_info|linebreaks }}
</td>
{% endif %}
<th class="ipr-label {% if prev %}text-center table-secondary{% endif %}">
Other info
</th>
<td class="ipr-this">
{{ ipr.ietfer_contact_info|linebreaks }}
</td>
</tr>
</tbody>
</table>
{% endif %}
{% if ipr.iprdocrel_set.all or ipr.other_designations %}
<h2 class="mt-5">
{% cycle section %}. IETF Document or Other Contribution to Which this IPR Disclosure Relates
</h2>
<table class="table table-sm table-striped">
{% if prev %}
<thead>
<tr class="text-center">
<th class="ipr-prev col-5">
{% if prev.state.slug == "posted" %}
Previous (<a href="{% url "ietf.ipr.views.show" id=prev.id %}">#{{ prev.id }}</a>)
{% else %}
Previous (#{{ prev.id }}, {{ prev.state }})
{% endif %}
</th>
<th>
</th>
<th class="col-5">
This (#{{ ipr.id }})
</th>
</tr>
</thead>
{% else %}
<thead>
<tr>
<th>
</th>
</tr>
</thead>
{% endif %}
<tbody>
<tr>
{% if prev %}
<td class="ipr-prev">
<dl class="row">
{% for iprdocrel in prev.iprdocrel_set.all %}
<dt class="col-sm-4 my-0">
{{ iprdocrel.doc_type }}:
</dt>
<dd class="col-sm-8 my-0">
{{ iprdocrel.formatted_name|urlize_ietf_docs }} ("{{ iprdocrel.document.document.title }}")
</dd>
{% if iprdocrel.revisions %}
<dt class="col-sm-4 my-0">
Revisions:
</dt>
<dd class="col-sm-8 my-0">
{{ iprdocrel.revisions }}
</dd>
{% endif %}
{% if iprdocrel.sections %}
<dt class="col-sm-4 my-0">
Sections:
</dt>
<dd class="col-sm-8 my-0">
{{ iprdocrel.sections }}
</dd>
{% endif %}
{% endfor %}
{% if prev.other_designations %}
<dt class="col-sm-4 my-0">
Designations for Other Contributions:
</dt>
<dd class="col-sm-8 my-0">
{{ prev.other_designations }}
</dd>
{% endif %}
</dl>
</td>
<th class="ipr-label {% if prev %}text-center table-secondary{% endif %}">
</th>
{% endif %}
<td class="ipr-this">
<dl class="row">
{% for iprdocrel in ipr.iprdocrel_set.all %}
<dt class="{% if prev %}col-sm-4{% else %}col-sm-3{% endif %} my-0">
{{ iprdocrel.doc_type }}:
</dt>
<dd class="{% if prev %}col-sm-8{% else %}col-sm-9{% endif %} my-0">
{{ iprdocrel.formatted_name|urlize_ietf_docs }} ("{{ iprdocrel.document.document.title }}")
</dd>
{% if iprdocrel.revisions %}
<dt class="{% if prev %}col-sm-4{% else %}col-sm-3{% endif %} my-0">
Revisions:
</dt>
<dd class="{% if prev %}col-sm-8{% else %}col-sm-9{% endif %} my-0">
{{ iprdocrel.revisions }}
</dd>
{% endif %}
{% if iprdocrel.sections %}
<dt class="{% if prev %}col-sm-4{% else %}col-sm-3{% endif %} my-0">
Sections:
</dt>
<dd class="{% if prev %}col-sm-8{% else %}col-sm-9{% endif %} my-0">
{{ iprdocrel.sections }}
</dd>
{% endif %}
{% endfor %}
{% if prev.other_designations %}
<dt class="{% if prev %}col-sm-4{% else %}col-sm-3{% endif %} my-0">
Designations for Other Contributions:
</dt>
<dd class="{% if prev %}col-sm-8{% else %}col-sm-9{% endif %} my-0">
{{ prev.other_designations }}
</dd>
{% endif %}
</dl>
</td>
</tr>
</tbody>
</table>
{% endif %}
{% if ipr.patent_info or ipr.has_patent_pending %}
<h2 class="mt-5">
{% cycle section %}. Disclosure of Patent Information
<br>
<small class="text-muted">i.e., patents or patent applications required to be disclosed by {{ in_force_ipr_rfc|urlize_ietf_docs }}</small>
</h2>
<p>
A. For granted patents or published pending patent applications, please provide the following information:
</p>
<table class="table table-sm table-striped">
{% if prev %}
<thead>
<tr class="text-center">
<th class="ipr-prev col-5">
{% if prev.state.slug == "posted" %}
Previous (<a href="{% url "ietf.ipr.views.show" id=prev.id %}">#{{ prev.id }}</a>)
{% else %}
Previous (#{{ prev.id }}, {{ prev.state }})
{% endif %}
</th>
<th>
</th>
<th class="col-5">
This (#{{ ipr.id }})
</th>
</tr>
</thead>
{% else %}
<thead>
<tr>
<th class="col-3">
</th>
<th class="col-9">
</th>
</tr>
</thead>
{% endif %}
<tbody>
<tr>
{% if prev %}
<td class="ipr-prev">
{{ prev.patent_info|linebreaks }}
</td>
{% endif %}
<th class="ipr-label {% if prev %}text-center table-secondary{% endif %}">
Patent, Serial,
Publication, Registration,
or Application/File number(s)
</th>
<td class="ipr-this">
{{ ipr.patent_info|linebreaks }}
</td>
</tr>
</tbody>
</table>
<p>
B. Does this disclosure relate to an unpublished pending patent application?:
</p>
<table class="table table-sm table-striped">
{% if prev %}
<thead>
<tr class="text-center">
<th class="ipr-prev col-5">
{% if prev.state.slug == "posted" %}
Previous (<a href="{% url "ietf.ipr.views.show" id=prev.id %}">#{{ prev.id }}</a>)
{% else %}
Previous (#{{ prev.id }}, {{ prev.state }})
{% endif %}
</th>
<th>
</th>
<th class="col-5">
This (#{{ ipr.id }})
</th>
</tr>
</thead>
{% else %}
<thead>
<tr>
<th class="col-3">
</th>
<th class="col-9">
</th>
</tr>
</thead>
{% endif %}
<tbody>
<tr>
{% if prev %}
<td class="ipr-prev">
{{ prev.has_patent_pending|yesno:"Yes,No" }}
</td>
{% endif %}
<th class="ipr-label {% if prev %}text-center table-secondary{% endif %}">
Has patent pending
</th>
<td class="ipr-this">
{{ ipr.has_patent_pending|yesno:"Yes,No" }}
</td>
</tr>
</tbody>
</table>
{% endif %}
{% if ipr.licensing %}
<h2 class="mt-5">
{% cycle section %}. Licensing Declaration
</h2>
<p>
The Patent Holder states that its position with respect
to licensing any patent claims contained in the patent(s) or patent
application(s) disclosed above that would necessarily be infringed by
implementation of the technology required by the relevant IETF specification
("Necessary Patent Claims"), for the purpose of implementing such
specification, is as follows(select one licensing declaration option only):
</p>
{% if prev.licensing.slug == "provided-later" or ipr.licensing.slug == "provided-later" %}
<div>
Possible licensing choices a), b), and c) when Licensing Declaration to be Provided Later:
<ul style="list-style: none">
{% for desc in choices_abc %}
<li>
{{ desc }}
</li>
{% endfor %}
</ul>
</div>
{% endif %}
<table class="table table-sm table-striped">
{% if prev %}
<thead>
<tr class="text-center">
<th class="ipr-prev col-5">
{% if prev.state.slug == "posted" %}
Previous (<a href="{% url "ietf.ipr.views.show" id=prev.id %}">#{{ prev.id }}</a>)
{% else %}
Previous (#{{ prev.id }}, {{ prev.state }})
{% endif %}
</th>
<th>
</th>
<th class="col-5">
This (#{{ ipr.id }})
</th>
</tr>
</thead>
{% else %}
<thead>
<tr>
<th class="col-3">
</th>
<th class="col-9">
</th>
</tr>
</thead>
{% endif %}
<tbody>
<tr>
{% if prev %}
<td class="ipr-prev">
{% if prev.licensing.slug == "provided-later" %}
{{ prev.licensing.desc|slice:"2:"|slice:":117" }})
{% else %}
{{ prev.licensing.desc|slice:"2:" }}
{% endif %}
</td>
{% endif %}
<th class="ipr-label {% if prev %}text-center table-secondary{% endif %}">
Licensing
</th>
<td class="ipr-this">
{% if ipr.licensing.slug == "provided-later" %}
{{ ipr.licensing.desc|slice:"2:"|slice:":117" }})
{% else %}
{{ ipr.licensing.desc|slice:"2:" }}
{% endif %}
</td>
</tr>
<tr>
{% if prev %}
<td class="ipr-prev">
{{ prev.licensing_comments|default:"(No information submitted)"|linebreaks }}
</td>
{% endif %}
<th class="ipr-label {% if prev %}text-center table-secondary{% endif %}">
Licensing information, comments, notes, or URL for further information
</th>
<td class="ipr-this">
{{ ipr.licensing_comments.strip|default:"(No information submitted)"|urlize_ietf_docs|linkify|linebreaks }}
</td>
</tr>
</tbody>
</table>
<p>
Note: The individual submitting this template represents and warrants
that he or she is authorized by the Patent Holder to agree to the
above-selected licensing declaration.
</p>
{% elif ipr.statement %}
<h2 class="mt-5">
{% cycle section %}. Statement
</h2>
<table class="table table-sm table-striped">
{% if prev %}
<thead>
<tr class="text-center">
<th class="ipr-prev col-5">
{% if prev.state.slug == "posted" %}
Previous (<a href="{% url "ietf.ipr.views.show" id=prev.id %}">#{{ prev.id }}</a>)
{% else %}
Previous (#{{ prev.id }}, {{ prev.state }})
{% endif %}
</th>
<th>
</th>
<th class="col-5">
This (#{{ ipr.id }})
</th>
</tr>
</thead>
{% else %}
<thead>
<tr>
<th class="col-3">
</th>
<th class="col-9">
</th>
</tr>
</thead>
{% endif %}
<tbody>
<tr>
{% if prev %}
<td class="ipr-prev">
{{ prev.statement|linebreaks }}
</td>
{% endif %}
<th class="ipr-label {% if prev %}text-center table-secondary{% endif %}">
Statement
</th>
<td class="ipr-this">
{{ ipr.statement|linebreaks }}
</td>
</tr>
</tbody>
</table>
{% endif %}
<h2 class="mt-5">
{% cycle section %}. Contact Information of Submitter of this Form
</h2>
<table class="table table-sm table-striped">
{% if prev %}
<thead>
<tr class="text-center">
<th class="ipr-prev col-5">
{% if prev.state.slug == "posted" %}
Previous (<a href="{% url "ietf.ipr.views.show" id=prev.id %}">#{{ prev.id }}</a>)
{% else %}
Previous (#{{ prev.id }}, {{ prev.state }})
{% endif %}
</th>
<th>
</th>
<th class="col-5">
This (#{{ ipr.id }})
</th>
</tr>
</thead>
{% else %}
<thead>
<tr>
<th class="col-3">
</th>
<th class="col-9">
</th>
</tr>
</thead>
{% endif %}
<tbody>
<tr>
{% if prev %}
<td class="ipr-prev">
{{ prev.submitter_name }}
</td>
{% endif %}
<th class="ipr-label {% if prev %}text-center table-secondary{% endif %}">
Submitter name
</th>
<td class="ipr-this">
{{ ipr.submitter_name }}
</td>
</tr>
<tr>
{% if prev %}
<td class="ipr-prev">
{{ prev.submitter_email|linkify }}
</td>
{% endif %}
<th class="ipr-label {% if prev %}text-center table-secondary{% endif %}">
Submitter email
</th>
<td class="ipr-this">
{{ ipr.submitter_email|linkify }}
</td>
</tr>
</tbody>
</table>
{% if ipr.notes %}
<h2 class="mt-5">
{% cycle section %}. Other Notes
</h2>
<table class="table table-sm table-striped">
{% if prev %}
<thead>
<tr class="text-center">
<th class="ipr-prev col-5">
{% if prev.state.slug == "posted" %}
Previous (<a href="{% url "ietf.ipr.views.show" id=prev.id %}">#{{ prev.id }}</a>)
{% else %}
Previous (#{{ prev.id }}, {{ prev.state }})
{% endif %}
</th>
<th>
</th>
<th class="col-5">
This (#{{ ipr.id }})
</th>
</tr>
</thead>
{% else %}
<thead>
<tr>
<th class="col-3">
</th>
<th class="col-9">
</th>
</tr>
</thead>
{% endif %}
<tbody>
<tr>
{% if prev %}
<td class="ipr-prev">
{{ prev.notes|urlize_ietf_docs|linkify|linebreaks }}
</td>
{% endif %}
<th class="ipr-label {% if prev %}text-center table-secondary{% endif %}">
Additional notes
</th>
<td class="ipr-this">
{{ ipr.notes|urlize_ietf_docs|linkify|linebreaks }}
</td>
</tr>
</tbody>
</table>
{% endif %}
<p class="my-3 alert alert-info">
Only those sections of the relevant entry form where the submitter provided information are displayed above.
</p>
{% endblock %}