diff options
Diffstat (limited to 'portal-gui/templates/myrpki/dashboard.html')
-rw-r--r-- | portal-gui/templates/myrpki/dashboard.html | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/portal-gui/templates/myrpki/dashboard.html b/portal-gui/templates/myrpki/dashboard.html index 116ea792..dea03c31 100644 --- a/portal-gui/templates/myrpki/dashboard.html +++ b/portal-gui/templates/myrpki/dashboard.html @@ -54,18 +54,19 @@ td { border: solid 1px; text-align: center; padding-left: 1em; padding-right: 1e {% if request.session.handle.children.all %} <ul> {% for child in request.session.handle.children.all %} -<li><a href="{% url rpki.gui.app.views.child_view child.handle %}">{{ child.handle }}</a> +<li><a href="{% url rpki.gui.app.views.child_view child.handle %}">{{ child.handle }}</a>, valid until {{ child.valid_until }} {% if child.address_range.count or child.asn.count %} <p>Delegated resources: <ul> {% for asn in child.asn.all %} -<li><a href="{{ asn.get_absolute_url }}">{{ asn }}</a> +<li><a href="{{ asn.get_absolute_url }}">{{ asn }}</a></li> {% endfor %} {% for address in child.address_range.all %} -<li><a href="{{ address.get_absolute_url}}">{{ address }}</a> +<li><a href="{{ address.get_absolute_url}}">{{ address }}</a></li> {% endfor %} </ul> {% endif %} +</li> {% endfor %} </ul> <!-- |