diff --git a/ipv6ula/settings.py b/ipv6ula/settings.py index f2ee0dc..2f67072 100644 --- a/ipv6ula/settings.py +++ b/ipv6ula/settings.py @@ -151,8 +151,10 @@ AUTH_USER_MODEL = 'ipv6ula.User' CRISPY_TEMPLATE_PACK = 'bootstrap4' +LOGIN_REDIRECT_URL = '/' LOGOUT_URL="/logout" + # Overwrite in local settings try: from ipv6ula.local_settings import * diff --git a/ipv6ula/templates/ipv6ula/base.html b/ipv6ula/templates/ipv6ula/base.html index d2d58c0..2c0eb05 100644 --- a/ipv6ula/templates/ipv6ula/base.html +++ b/ipv6ula/templates/ipv6ula/base.html @@ -10,64 +10,33 @@ - The IPv6 ULA registry + The IPv6 ULA registry by ungleich.ch @@ -77,7 +46,7 @@ diff --git a/ipv6ula/templates/ipv6ula/ula_form.html b/ipv6ula/templates/ipv6ula/ula_form.html index 494b8a1..8eeae74 100644 --- a/ipv6ula/templates/ipv6ula/ula_form.html +++ b/ipv6ula/templates/ipv6ula/ula_form.html @@ -3,12 +3,24 @@ {% block content %}
+
+
-
- {% csrf_token %} - {{ form|crispy }} - -
+ All ULA prefixes are /48 networks. Simply add the first IP address + (without any netmask, for instance fd23:2323:2323::). + + You can choose the name of your liking and an optional + organization name. +
+ +
+
+ {% csrf_token %} + {{ form|crispy }} + +
+
+
{% endblock %} diff --git a/ipv6ula/templates/ipv6ula/ula_list.html b/ipv6ula/templates/ipv6ula/ula_list.html index f1ea078..0e5941a 100644 --- a/ipv6ula/templates/ipv6ula/ula_list.html +++ b/ipv6ula/templates/ipv6ula/ula_list.html @@ -1,27 +1,54 @@ {% extends 'ipv6ula/base.html' %} {% block content %} -
- - - - - - - - - - - {% for ula in object_list %} - - - - - - - {% endfor %} - -
PrefixNameOrganizationURL
{{ ula.prefix }}{{ ula.name }}{{ ula.organization }}{{ ula.website }}
+
+

+ This is the new IPv6 ULA registry. It is inspired by the original + ULA registry + from sixxs and (will contain!) contains all of the prefixes + that were in the sixxs database. +

+ +

+ While is is debatable whether or not there should be a ULA + registry at all, we at ungleich frequently were asked to provide a + ULA registry for those who don't have the resources to use global + unique addresses, but still want to indicate that a network is + used. +

+ +

+ At ungleich + we neither endorse nor condemn the use of ULA. Our objective is + to enable everyone everywhere with IPv6. In this regard we + hope that this ULA registry is enabling some additional people + to migrate to IPv6. +

+
+ + +
+ + + + + + + + + + + {% for ula in object_list %} + + + + + + + {% endfor %} + +
PrefixNameOrganizationURL
{{ ula.prefix }}{{ ula.name }}{{ ula.organization }}{{ ula.website }}
+
{% endblock %}