forked from ietf-tools/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrelationship_help.html
More file actions
32 lines (32 loc) · 1.09 KB
/
relationship_help.html
File metadata and controls
32 lines (32 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin static %}
{% block pagehead %}
<link rel="stylesheet" href="{% static "ietf/css/list.css" %}">
{% endblock %}
{% block title %}Document relationships{% endblock %}
{% block content %}
{% origin %}
<h1>Document relationships</h1>
<table class="table table-sm table-striped tablesorter">
<thead>
<tr>
<th scope="col" data-sort="name">Relationship</th>
<th scope="col" data-sort="desc">Description</th>
<th scope="col" data-sort="revname">Inverse relationship</th>
</tr>
</thead>
<tbody>
{% for rel in relations %}
<tr id="{{ rel.slug }}">
<th scope="row">{{ rel.name }}</th>
<td>{{ rel.desc|linebreaksbr }}</td>
<td>{{ rel.revname }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}
{% block js %}
<script src="{% static "ietf/js/list.js" %}"></script>
{% endblock %}