datatracker/ietf/templates/idindex/all_id.html
Henrik Levkowetz 5872696834 Moving ietf to trunk/ietf
[[Split portion of a mixed commit.]]
 - Legacy-Id: 96.1
2007-05-04 12:37:28 +00:00

62 lines
1.5 KiB
HTML

<html>
<HEAD><TITLE>All I-Ds List</title>
<STYLE TYPE="text/css">
<!--
TD {text-decoration: none; color: #000000; font: 10pt arial;}
body {
margin:0;
padding:0;
font-family: Arial, sans-serif;
font-size: 1.1em;
font-style: normal;
}
th {
padding:6px 0px 10px 30px;
line-height:1em;
font-family: Arial, sans-serif;
font-size: 1.0em;
color: #333;
}
/* Links
----------------------------------------------- */
a:link, a:visited {
border-bottom:1px dotted #69f;
color:#36c;
text-decoration:none;
}
a:visited {
border-bottom-color:#969;
color:#36c;
}
a:hover {
border-bottom:1px solid #f00;
color:#f00;
}
a.noline:link, a.noline:visited, a.noline:hover {border-style:none;}
-->
</STYLE>
</head>
<body>
<center>All I-Ds List</center>
<br><br>
<a href="all_id_txt.html">TAB Delimited Format</a><br><br>
<table cellpadding="3" cellspacing="1" border="1">
<tr>
<th>I-D name and version</th>
<th>Last Updated Date</th>
<th>Status</th>
<th>RFC Number</th>
</tr>
{% for object in object_list %}
<tr><td>{{ object.id.filename }}-{{ object.id.revision_display}}</td><td>{{ object.id.last_modified_date }}</td><td>{% if object.tracker %}In IESG processing - see tracker{% else %}{{ object.id.status }}{% ifequal object.id.status.status "Replaced" %} {{ object.id.comments }}{% endifequal %}{% endif %}</td><td>{% if object.id.rfc_number %}{{ object.id.rfc_number }}{% endif %}</td></tr>
{% endfor %}
</table>
{% include "debug.html" %}
</body>
</html>