* Brought search results against WGs and document titles into consistency with results from searching for individual documents * Added the IPR count to the link on the documents main page (when not zero) * Built on Henrik's reimplementation of all_related_*, making the *_related_* functions return DocAlias lists consistently, and added corresponding _relations_ functions to get lists of actual RelatedDocument objects. * Added getting the DocAlias with the same name to Document * Added getting related IPR disclosures (as described in the first bullet) to Document * Simplified ipr/related.py * Removed the use of DraftLikeDocAlias and IETFWG from ipr/search.py. Retooled the various search functions and templates to use DocAlias and IprDocAlias directly. * Removed dead code from ipr/search.py * Removed the special handling of WG 2000 from ipr/search.py Fixes bug 1071 - Legacy-Id: 6042
15 lines
450 B
HTML
15 lines
450 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2007, All Rights Reserved #}
|
|
{% block title %}IPR Disclosures - Select Internet-Draft{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>IPR Disclosures - Select Internet-Draft</h1>
|
|
|
|
<h3>Please select one of following I-Ds</h3>
|
|
<ul>
|
|
{% for docalias in docs %}
|
|
<li><a href="?option=document_search&id_document_tag={{ docalias.document }}">{{ docalias.document }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endblock %}
|