You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
633 B

{% extends "base.html" %}
{% block main %}
</div>
<div class="ov-table section">
<h4>List of Lonks</h4>
{% if object_list is not empty %}
<table>
<tr>
<th></th>
<th>from</th>
<th>to</th>
</tr>
{% for link in object_list %}
<tr>
<td><code><a href="{% url 'interface.link.update' link.slug %}">[e]</a> | <a href="{% url 'interface.link.delete' link.slug %}">[d]</a></code></td>
<td>{{ link.link }}</td>
<td>{{ link.to }}</td>
</tr>
{% endfor %}
</table>
{% else %}
<p>There are no links in the database for this domain yet.</p>
{% endif %}
</div>
{% endblock %}