diff --git a/labellabor/urls.py b/labellabor/urls.py index 52ce197..06cb865 100644 --- a/labellabor/urls.py +++ b/labellabor/urls.py @@ -6,7 +6,7 @@ from django.urls import include, path from two_factor.urls import urlpatterns as tf_urls from .views import ( - ExampleSecretView, HomeView, RegistrationCompleteView, RegistrationView, + ExampleSecretView, LabelbaseView, HomeView, RegistrationCompleteView, RegistrationView, ) urlpatterns = [ @@ -15,6 +15,13 @@ urlpatterns = [ HomeView.as_view(), name='home', ), + + path( + '', + LabelbaseView.as_view(), + name='labelbase', + ), + path( 'account/logout/', LogoutView.as_view(), diff --git a/labellabor/views.py b/labellabor/views.py index 365ed67..33ad14d 100644 --- a/labellabor/views.py +++ b/labellabor/views.py @@ -12,6 +12,10 @@ class HomeView(TemplateView): template_name = 'home.html' +class LabelbaseView(TemplateView): + template_name = 'labelbase.html' + + class RegistrationView(FormView): template_name = 'registration.html' form_class = UserCreationForm diff --git a/templates/_base.html b/templates/_base.html index 19dd144..067a9c7 100644 --- a/templates/_base.html +++ b/templates/_base.html @@ -272,66 +272,6 @@ body {
- - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
#typereflabel
1,001txf91d0a8a78462bc59398f2c5d7a84fcff491c26ba54c4833478b202796c8aafdTransaction
1,001addrbc1q34aq5drpuwy3wgl9lhup9892qp6svr8ldzyy7cAddress
1,001input0283409659355b6d1cc3c32decd5d561abaac86c37a353b52895a5e6c196d6f448placeholder
1,001randomf91d0a8a78462bc59398f2c5d7a84fcff491c26ba54c4833478b202796c8aafdplaceholder
1,001outputf91d0a8a78462bc59398f2c5d7a84fcff491c26ba54c4833478b202796c8aafdplaceholder
1,001xpubxpub661MyMwAqRbcFtXgS5sYJABqqG9YLmC4Q1Rdap9gSE8NqtwybGhePY2gZ29ESFjqJoCu1Rupje8YtGqsefD265TMg7usUDFdp6W1EGMcet8Extended Public Key
-
- - {% include "_messages.html" %} {% block content %}{% endblock %}
@@ -363,9 +303,7 @@ body { })() - $(document).ready(function () { - $('#bip329labels').DataTable(); - }); +