datatracker/ietf/templates/idrfc/in_last_call.html
Henrik Levkowetz 12f344054d Merged [2949] from rjsparks@nostrum.com:
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
2011-03-26 14:43:24 +00:00

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 %}