diff --git a/ietf/templates/doc/document_subseries.html b/ietf/templates/doc/document_subseries.html index 55c934acd..f0273c909 100644 --- a/ietf/templates/doc/document_subseries.html +++ b/ietf/templates/doc/document_subseries.html @@ -2,12 +2,13 @@ {# Copyright The IETF Trust 2023, All Rights Reserved #} {% load origin %} {% load static %} -{% block title %}{{doc.type.name}}s{% endblock %} +{% load ietf_filters %} +{% block title %}{{ doc.name|prettystdname }}{% endblock %} {% block content %} {% origin %} {{ top|safe }} -

{{ doc.name|slice:":3"|upper }} {{ doc.name|slice:"3:"}} {% if doc.contains %}consists of:{% else %}currently contains no RFCs{% endif %}

- {% for rfc in doc.contains %} +

{{ doc.name|prettystdname }} {% if doc.contains %}consists of:{% else %}currently contains no RFCs{% endif %}

+ {% for rfc in doc.contains|dictsort:"rfc_number" %}

RFC {{rfc.name|slice:"3:"}} : {{rfc.title}}

{% endfor %}
@@ -26,4 +27,4 @@ Referenced by
-{% endblock %} \ No newline at end of file +{% endblock %} diff --git a/ietf/templates/doc/document_subseries_top.html b/ietf/templates/doc/document_subseries_top.html index f7c8ba8e4..742ea5137 100644 --- a/ietf/templates/doc/document_subseries_top.html +++ b/ietf/templates/doc/document_subseries_top.html @@ -3,7 +3,7 @@ {% origin %} {% load ietf_filters %}

- {{ doc.name|slice:":3"|upper }} {{ doc.name|slice:"3:"}} + {{ doc.name|prettystdname }}