Ticket 566 Fix typo Fixes #566 - Legacy-Id: 2975 Note: SVN reference [2968] has been migrated to Git commit 7696286cbbcaa8eac5f3e1e682419658dcb74b87
15 lines
442 B
HTML
15 lines
442 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 doc in docs %}
|
|
<li><a href="?option=document_search&id_document_tag={{ doc.id_document_tag }}">{{ doc.filename }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endblock %}
|