38 lines
1 KiB
HTML
38 lines
1 KiB
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin static %}
|
|
|
|
{% block pagehead %}
|
|
<link rel="stylesheet" href="{% static "jquery.tablesorter/css/theme.bootstrap.min.css" %}">
|
|
{% endblock %}
|
|
|
|
{% block title %}Document relationships{% endblock %}
|
|
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>Document relationships</h1>
|
|
|
|
<table class="table table-condensed table-striped tablesorter">
|
|
<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 }}">
|
|
<th class="name">{{ rel.name }}</th>
|
|
<td class="desc">{{ rel.desc|linebreaksbr }}</td>
|
|
<td class="revname">{{ rel.revname }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
|
|
{% endblock %}
|
|
|
|
{% block js %}
|
|
<script src="{% static "jquery.tablesorter/js/jquery.tablesorter.combined.min.js" %}"></script>
|
|
{% endblock %} |