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
* Added test cases for this and for addtional empty test results
* Some refactoring of IPR search code
* Fixed bugs in multiple templates for the empty test result case
- Legacy-Id: 685
<tr><tdcolspan="3"><b>{% block search_header %}{% if not count %}Search result on {{ q }}{% else %}Document Title Search Result{% endif %}{% endblock %}</b></td></tr>
6
+
{% if not count %}
7
+
<tr>
8
+
<td></td>
9
+
<tdcolspan="2">
10
+
<b>No IPR disclosures related to a document with the word(s) <i>{{ q }}</i> in the title have been submitted.</b>
11
+
</td>
12
+
</tr>
13
+
{% else %}
14
+
<tr><tdcolspan="3">Total number of IPR disclosures found: {{ count }} </td></tr>
15
+
16
+
{% block iprlist %}
17
+
{% for doc in docs %}
18
+
<tbodybgcolor="#{% cycle dadada,eaeaea as bgcolor %}">
19
+
<tr>
20
+
<tdcolspan="3">
21
+
IPR that is related to <b><i>{{ doc|rfcspace|lstrip:"0"|rfcnospace }}, "{{ doc.title }}"{% if doc.related %}, {{ doc.relation }} {{ doc.related|rfcspace|lstrip:"0"|rfcnospace }}, "{{ doc.related.title }}"{% endif %},
22
+
</i></b>which has the string <b>"<i>{{ q }}</i>"</b> within the document title.
0 commit comments