From e6f0437b8b8a9c7e3a53b023a467bf40faab1fe1 Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Sat, 5 Dec 2020 13:44:17 +0100 Subject: [PATCH] Update code --- ipv6ula/templates/ipv6ula/ula_list.html | 9 +++++---- ipv6ula/views.py | 1 - 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ipv6ula/templates/ipv6ula/ula_list.html b/ipv6ula/templates/ipv6ula/ula_list.html index df697ba..925256c 100644 --- a/ipv6ula/templates/ipv6ula/ula_list.html +++ b/ipv6ula/templates/ipv6ula/ula_list.html @@ -6,10 +6,11 @@

Welcome to the IPv6 ULA registry

- 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. + This is the new IPv6 ULA (Unique Local Address) 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.

diff --git a/ipv6ula/views.py b/ipv6ula/views.py index 2c38d62..2a01799 100644 --- a/ipv6ula/views.py +++ b/ipv6ula/views.py @@ -15,7 +15,6 @@ from .forms import ULAForm class IndexView(ListView): model = ULA -# paginate_by = 50 queryset = ULA.objects.order_by('prefix') class SubmitView(LoginRequiredMixin, CreateView):