code cleanup

This commit is contained in:
Alicja Cięciwa
2020-11-13 17:43:06 +01:00
parent 8512818192
commit 68337fcf66
11 changed files with 14 additions and 75 deletions

View File

@@ -15,19 +15,14 @@ Including another URLconf
"""
from django.contrib import admin
from django.urls import path, include
from django.views.generic.base import TemplateView
from work import views
from accounts import views as accounts_views
from django.conf.urls import url
urlpatterns = [
path('admin/', admin.site.urls),
path('accounts/', include('django.contrib.auth.urls')),
# path('', TemplateView.as_view(template_name='home.html'), name='home'),
path('', views.get_basic_workdata, name='home'),
path('register/', accounts_views.register, name='register'),
# url(r'^signup/$', accounts_views.signup, name='signup'),
]