aboutsummaryrefslogtreecommitdiff
path: root/rpkid/rpki/gui/app/templates/rpkigui/parent_view.html
blob: 23509311e2aa6e94fad63c17af2af35556378863 (plain) (blame)
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
{% extends "base.html" %}

{% block content %}


Parent View

Parent: {{ parent.handle }}

Delegated Addresses

    {% for c in parent.resources.all %} {% for a in c.address_range.all %}
  • {{ a }} {% endfor %} {% endfor %}

Delegated ASNs

    {% for c in parent.resources.all %} {% for a in c.asn.all %}
  • {{ a }} {% endfor %} {% endfor %}
{% endblock %}