datatracker/ietf/templates/doc/relationship_help.html

31 lines
759 B
HTML

{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% block title %}Document relationships{% endblock %}
{% block content %}
{% origin %}
<h1>Document relationships</h1>
<table class="table table-condensed table-striped">
<thead>
<tr>
<th>Relationship</th>
<th>Description</th>
<th>Inverse relationship</th>
</tr>
</thead>
<tbody>
{% for rel in relations %}
<tr class="anchor-target" id="{{ rel.slug }}">
<td class="name">{{ rel.name }}</td>
<td class="desc">{{ rel.desc|linebreaksbr }}</td>
<td class="revname">{{ rel.revname }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}