68 lines
2.4 KiB
HTML
68 lines
2.4 KiB
HTML
{% extends "ipr/search_result.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}{% origin %}
|
|
|
|
{% load ietf_filters static %}
|
|
|
|
{% block pagehead %}
|
|
<link rel="stylesheet" href="{% static "jquery.tablesorter/css/theme.bootstrap.min.css" %}">
|
|
{% endblock %}
|
|
|
|
{% block search_header %}Working Group search results{% endblock %}
|
|
|
|
{% block search_result %}
|
|
<p class="alert alert-info">Total number of {{ q }} WG IPR disclosures found: <b>{{ iprs|length }}</b>. </p>
|
|
|
|
{% if docs %}
|
|
<table class="table table-condensed table-striped tablesorter">
|
|
<thead>
|
|
<tr>
|
|
<th>Date</th>
|
|
<th>ID</th>
|
|
<th>Statement</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
{% for alias in docs %}
|
|
<tbody>
|
|
<tr>
|
|
<th class="warning" colspan="3">
|
|
IPR related to {{ alias.name|rfcspace|lstrip:"0"|rfcnospace }} ("{{ alias.document.title }}"){% if alias.related %} that was {{ alias.relation|lower }} {{ alias.related.source|rfcspace|lstrip:"0"|rfcnospace }} ("{{ alias.related.source.title|escape }}"){% endif %}{% if alias.product_of_this_wg %}, a product of the {{ q }} WG{% endif %}:
|
|
</th>
|
|
</tr>
|
|
</tbody>
|
|
<tbody>
|
|
{% if alias.document.ipr %}
|
|
{% for ipr in alias.document.ipr %}
|
|
<tr>
|
|
<td class="text-nowrap">{{ ipr.disclosure.time|date:"Y-m-d" }}</td>
|
|
<td>{{ ipr.disclosure.id }}</td>
|
|
<td>
|
|
{% for item in ipr.disclosure.updates.all %}
|
|
{% if item.target.state_id == "posted" %}
|
|
IPR disclosure #{{ item.target.id }}: <a href="{% url "ietf.ipr.views.show" item.target.id %}">{{ item.target.title }}</a><br>Updated by:
|
|
{% endif %}
|
|
{% endfor %}
|
|
<a href="{% url "ietf.ipr.views.show" ipr.disclosure.id %}">{{ ipr.disclosure.title }}</a>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
|
|
{% else %}
|
|
|
|
<tr>
|
|
<td></td>
|
|
<td></td>
|
|
<td>No IPR disclosures related to <i>{{ alias.name|rfcspace|lstrip:"0" }}</i> have been submitted.</td>
|
|
</tr>
|
|
{% endif %}
|
|
</tbody>
|
|
{% endfor %}
|
|
</table>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
|
|
|
{% block js %}
|
|
<script src="{% static "jquery.tablesorter/js/jquery.tablesorter.combined.min.js" %}"></script>
|
|
{% endblock %} |