form to input working hours
This commit is contained in:
Binary file not shown.
@@ -16,14 +16,15 @@ Including another URLconf
|
||||
from django.contrib import admin
|
||||
from django.urls import path, include
|
||||
from django.views.generic.base import TemplateView
|
||||
from django.contrib.auth import views
|
||||
# from accounts.forms import LoginForm
|
||||
from work import views
|
||||
|
||||
|
||||
|
||||
urlpatterns = [
|
||||
path('admin/', admin.site.urls),
|
||||
path('accounts/', include('django.contrib.auth.urls')),
|
||||
path('', TemplateView.as_view(template_name='home.html'), name='home'),
|
||||
# path('login/', views.LoginView, {'authentication_form':LoginForm}),
|
||||
# path('', TemplateView.as_view(template_name='home.html'), name='home'),
|
||||
path('', views.get_basic_workdata, name='home'),
|
||||
|
||||
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user