aboutsummaryrefslogtreecommitdiff
path: root/portal-gui/rpkigui/templates/myrpki/asn_view.html
blob: ef020355aaa3265bf9811236e5de3eeb52c350da (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{% extends "base.html" %}

{% block css %}
table { border-collapse: collapse }
th { border: solid 1px; padding: 1em }
td { border: solid 1px; text-align: center; padding-left: 1em; padding-right: 1em }
{% endblock %}

{% block content %}

Handle: {{ request.session.handle }}

ASN View

{% if asn.parent %} {% endif %} {% if asn.allocated %} {% endif %}
ASN:{{ asn }}
Suballocated from: {{ asn.parent }}
Received from: {% for p in parent %} {{ p.handle }} {% endfor %}
Validity:{{ asn.from_cert.all.0.not_before }} - {{ asn.from_cert.all.0.not_after }}
Allocated:{{asn.allocated.handle}}
{% if asn.children.count %}

Suballocations

    {% for subaddr in asn.children.all %}
  • {{ subaddr }} {% endfor %}
{% endif %} {% if roas %}

ROAs

{% for r in roas %} {% endfor %}
Prefixes
{% endif %} {% if unallocated %}

Unallocated

    {% for u in unallocated %}
  • {{ u }} {% endfor %}
{% endif %} {% if form %}

Edit

{{ form.as_p }}
{% endif %}

Action: give to child {% endblock %}