diff options
Diffstat (limited to 'portal-gui/templates')
-rw-r--r-- | portal-gui/templates/base.html | 3 | ||||
-rw-r--r-- | portal-gui/templates/myrpki/asn_view.html | 2 | ||||
-rw-r--r-- | portal-gui/templates/myrpki/child_view.html | 2 | ||||
-rw-r--r-- | portal-gui/templates/myrpki/dashboard.html | 12 | ||||
-rw-r--r-- | portal-gui/templates/myrpki/parent_view.html | 2 | ||||
-rw-r--r-- | portal-gui/templates/myrpki/prefix_view.html | 2 |
6 files changed, 11 insertions, 12 deletions
diff --git a/portal-gui/templates/base.html b/portal-gui/templates/base.html index 7645cf9f..a096cdca 100644 --- a/portal-gui/templates/base.html +++ b/portal-gui/templates/base.html @@ -8,8 +8,7 @@ </head> <body> <div id="header"> - <img src="/site_media/img/my.png"/> - <img src="/site_media/img/rpki.png"/> + <h1>RPKI Portal GUI</h1> </div> <div id="content"> {% if user.is_authenticated %} diff --git a/portal-gui/templates/myrpki/asn_view.html b/portal-gui/templates/myrpki/asn_view.html index ef020355..d78237c5 100644 --- a/portal-gui/templates/myrpki/asn_view.html +++ b/portal-gui/templates/myrpki/asn_view.html @@ -7,7 +7,7 @@ td { border: solid 1px; text-align: center; padding-left: 1em; padding-right: 1e {% endblock %} {% block content %} -<p>Handle: <a href="{% url rpkigui.myrpki.views.dashboard %}">{{ request.session.handle }}</a> +<p>Handle: <a href="{% url rpki.gui.app.views.dashboard %}">{{ request.session.handle }}</a> <h1>ASN View</h1> diff --git a/portal-gui/templates/myrpki/child_view.html b/portal-gui/templates/myrpki/child_view.html index 62709f0d..0721cc65 100644 --- a/portal-gui/templates/myrpki/child_view.html +++ b/portal-gui/templates/myrpki/child_view.html @@ -1,7 +1,7 @@ {% extends "base.html" %} {% block content %} -<p>Handle: <a href="{% url rpkigui.myrpki.views.dashboard %}">{{ request.session.handle.handle }}</a> +<p>Handle: <a href="{% url rpki.gui.app.views.dashboard %}">{{ request.session.handle.handle }}</a> <h1>Child View</h1> <p>Child: {{ child.handle }} diff --git a/portal-gui/templates/myrpki/dashboard.html b/portal-gui/templates/myrpki/dashboard.html index af99e89e..116ea792 100644 --- a/portal-gui/templates/myrpki/dashboard.html +++ b/portal-gui/templates/myrpki/dashboard.html @@ -8,8 +8,8 @@ td { border: solid 1px; text-align: center; padding-left: 1em; padding-right: 1e {% block content %} <p>Handle: {{ request.session.handle }} -| <a href="{% url rpkigui.myrpki.views.conf_export %}">export identity</a> -| <a href="{% url rpkigui.myrpki.views.conf_list %}">select</a> +| <a href="{% url rpki.gui.app.views.conf_export %}">export identity</a> +| <a href="{% url rpki.gui.app.views.conf_list %}">select</a> <div style="border: inset"> <h1 style="text-align: center">Parents</h1> @@ -54,7 +54,7 @@ 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 rpkigui.myrpki.views.child_view child.handle %}">{{ child.handle }}</a> +<li><a href="{% url rpki.gui.app.views.child_view child.handle %}">{{ child.handle }}</a> {% if child.address_range.count or child.asn.count %} <p>Delegated resources: <ul> @@ -76,8 +76,8 @@ td { border: solid 1px; text-align: center; padding-left: 1em; padding-right: 1e {% endif %} <p> -Export (csv): <a href="{% url rpkigui.myrpki.views.download_asns request.session.handle %}">asns</a> | -<a href="{% url rpkigui.myrpki.views.download_prefixes request.session.handle %}">prefixes</a> +Export (csv): <a href="{% url rpki.gui.app.views.download_asns request.session.handle %}">asns</a> | +<a href="{% url rpki.gui.app.views.download_prefixes request.session.handle %}">prefixes</a> </div> @@ -101,7 +101,7 @@ Export (csv): <a href="{% url rpkigui.myrpki.views.download_asns request.session {% endfor %} </table> -<p><a href="{% url rpkigui.myrpki.views.download_roas request.session.handle %}">export (csv)</a> +<p><a href="{% url rpki.gui.app.views.download_roas request.session.handle %}">export (csv)</a> </div><!-- roas --> diff --git a/portal-gui/templates/myrpki/parent_view.html b/portal-gui/templates/myrpki/parent_view.html index e1852245..13a9d848 100644 --- a/portal-gui/templates/myrpki/parent_view.html +++ b/portal-gui/templates/myrpki/parent_view.html @@ -1,7 +1,7 @@ {% extends "base.html" %} {% block content %} -<p>Handle: <a href="{% url rpkigui.myrpki.views.dashboard %}">{{ request.session.handle.handle }}</a> +<p>Handle: <a href="{% url rpki.gui.app.views.dashboard %}">{{ request.session.handle.handle }}</a> <h1>Parent View</h1> <p>Parent: {{ parent.handle }} <h2>Delegated Addresses</h2> diff --git a/portal-gui/templates/myrpki/prefix_view.html b/portal-gui/templates/myrpki/prefix_view.html index 1e1ca797..aabc0a39 100644 --- a/portal-gui/templates/myrpki/prefix_view.html +++ b/portal-gui/templates/myrpki/prefix_view.html @@ -7,7 +7,7 @@ td { border: solid 1px; text-align: center; padding-left: 1em; padding-right: 1e {% endblock %} {% block content %} -<p>Handle: <a href="{% url rpkigui.myrpki.views.dashboard %}">{{ request.session.handle }}</a> +<p>Handle: <a href="{% url rpki.gui.app.views.dashboard %}">{{ request.session.handle }}</a> <h1>Prefix View</h1> |