Adds a view of documents currently in IETF Last Call Fixes bug #630 - Legacy-Id: 2957 Note: SVN reference [2949] has been migrated to Git commit 2cb9e0050a2970e5c5576b46ce75a0b7095532fd
17 lines
499 B
HTML
17 lines
499 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Internet-Drafts in IETF Last Call{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Internet-Drafts in IETF Last Call</h1>
|
|
|
|
<table class="ietf-table ietf-doctable">
|
|
<tr><th class="doc">Document</th><th class="title">Title</th><th class="date">Date</th><th class="status" colspan="2">Status</th><th class="ipr">ipr</th><th class="ad">Area Director</th></tr>
|
|
|
|
{% for doc in lcdocs %}
|
|
{% include "idrfc/search_result_row.html" %}
|
|
{% endfor %}
|
|
</table>
|
|
|
|
{% endblock %}
|