datatracker/ietf/templates/ipr/search_doc_list.html

18 lines
471 B
HTML

{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% block title %}IPR disclosures - select Internet-Draft{% endblock %}
{% block content %}
{% origin %}
<h1>IPR disclosures - select Internet-Draft</h1>
<p>Please select one of following I-Ds:</p>
<ul>
{% for docalias in docs %}
<li><a href="?submit=draft&id={{ docalias.name }}">{{ docalias.name }}</a></li>
{% endfor %}
</ul>
{% endblock %}