You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{% if user.is_authenticated and show_add_to_list %}
38
+
{% if show_add_to_list and user.is_authenticated %}
39
39
<tdclass="addtolist">
40
40
{% if doc.id %}
41
41
<ahref="{% url community_add_document doc.id.draft_name %}" title="Add to your personal ID list"><imgsrc="/images/add_to_list.png" alt="Add to your personal ID list" /></a>
@@ -51,7 +51,12 @@
51
51
{% endif %}
52
52
</td>
53
53
<tdclass="title">{{ doc.title }}</td>
54
-
{% include "idrfc/date_column.html" %}
54
+
55
+
<tdclass="date">{% if not doc.rfc %}{{ doc.publication_date }}{% else %}{{ doc.publication_date|date:"Y-m" }}{% endif %}
56
+
{% if doc.publication_date|timesince_days|new_enough:request %}<br/><spanclass="ietf-small ietf-highlight-y">{% if not doc.rfc%}<ahref="http:{{rfcdiff_prefix}}?url2={{doc.id.draft_name_and_revision}}">new</a>{%else%}new{%endif%}</span>{%endif%}
57
+
{% if doc.id and doc.id.expected_expiration_date and doc.id.expected_expiration_date|timesince_days|expires_soon:request %}<br/><spanclass="ietf-small ietf-highlight-y">expires soon</span>{%endif%}
0 commit comments