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
705 B

{% extends 'base.html' %}
{% block main %}
<div>
managing these domains:
<ul>
{% for domain in domains %}
<li><a href="{% url 'interface.link.list' domain.fqdn %}">{{ domain.fqdn }}</a></li>
{% endfor %}
<table>
<tr>
<th></th>
<th>link</th>
<th>to</th>
</tr>
{% for link in links %}
<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>
</ul>
</div>
{% endblock %}