22 lines
600 B
HTML
22 lines
600 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
|
|
<br>
|
|
<small class="text-body-secondary">Select Internet-Draft</small>
|
|
</h1>
|
|
<p>
|
|
Please select one of following I-Ds:
|
|
</p>
|
|
<ul>
|
|
{% for doc in docs %}
|
|
<li>
|
|
<a href="?submit=draft&id={{ doc.name }}">{{ doc.name }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endblock %} |