13 lines
491 B
HTML
13 lines
491 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2023, All Rights Reserved #}
|
|
{% load origin %}
|
|
{% load static %}
|
|
{% block title %}{{doc.type.name}}s{% endblock %}
|
|
{% block content %}
|
|
{% origin %}
|
|
{{ top|safe }}
|
|
<h2>{{ doc.name|slice:":3"|upper }} {{ doc.name|slice:"3:"}} consists of:</h2>
|
|
{% for rfc in doc.contains %}
|
|
<p><a href="{% url 'ietf.doc.views_doc.document_main' name=rfc.name %}">RFC {{rfc.name|slice:"3:"}}</a> : {{rfc.title}}</p>
|
|
{% endfor %}
|
|
{% endblock %} |