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
["sync_from_rfc_editor", f"Received changes through RFC Editor sync (created document RFC 1234, created became rfc relationship between {rfc_doc.came_from_draft().name} and RFC 1234, set title to 'A Testing RFC', set abstract to 'This is some interesting text.', set pages to 42, set standardization level to Proposed Standard, added RFC published event at 2023-09-22, created updates relation between RFC 1234 and RFC 123, added Errata tag)"],
377
+
["sync_from_rfc_editor", "Added rfc1234 to std1"],
378
+
["std_history_marker", "No history of STD1 is currently available in the datatracker before this point"],
379
+
["sync_from_rfc_editor", "Added rfc1234 to fyi1"],
380
+
["fyi_history_marker", "No history of FYI1 is currently available in the datatracker before this point"],
381
+
["sync_from_rfc_editor", "Added rfc1234 to bcp1"],
382
+
["bcp_history_marker", "No history of BCP1 is currently available in the datatracker before this point"],
Copy file name to clipboardExpand all lines: ietf/templates/doc/document_top.html
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,9 @@
5
5
<h1>
6
6
{{ doc.title|default:"(Untitled)" }}
7
7
<br>
8
-
<smallclass="text-body-secondary">{{ name }}</small>
8
+
<smallclass="text-body-secondary">{{ name }}{% if doc.part_of %}
9
+
{% for sub in doc.part_of %}{% if sub.contains|length_is:"1" %} also known as {% else %} part of {% endif %}<ahref="{% url 'ietf.doc.views_doc.document_main' name=sub.name%}">{{sub.name|slice:":3"|upper}} {{sub.name|slice:"3:"}}</a>{% if not forloop.last %}, {%endif%}{% endfor %}
0 commit comments