diff options
Diffstat (limited to 'portal-gui/templates/myrpki/child_view.html')
-rw-r--r-- | portal-gui/templates/myrpki/child_view.html | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/portal-gui/templates/myrpki/child_view.html b/portal-gui/templates/myrpki/child_view.html deleted file mode 100644 index 9bcdf948..00000000 --- a/portal-gui/templates/myrpki/child_view.html +++ /dev/null @@ -1,31 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -<p>Handle: <a href="{% url rpki.gui.app.views.dashboard %}">{{ request.session.handle.handle }}</a> -<h1>Child View</h1> -<p>Child: {{ child.handle }}</p> -<p>Valid until: {{ child.valid_until }}</p> - -<h2>Delegated Addresses</h2> -{% if child.address_range.all %} -<ul> -{% for a in child.address_range.all %} -<li><a href="{{ a.get_absolute_url }}">{{ a }}</a></li> -{% endfor %} -</ul> -{% else %} -<p>--none--</p> -{% endif %} - -<h2>Delegated ASNs</h2> -{% if child.asn.all %} -<ul> -{% for a in child.asn.all %} -<li><a href="{{ a.get_absolute_url }}">{{ a }}</a></li> -{% endfor %} -</ul> -{% else %} -<p>--none--</p> -{% endif %} - -{% endblock %} |