You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

17 lines
594 B

from django.urls import path
from . import views
app_name = "user"
urlpatterns = [
path("logout", views.logout_view, name='logout'),
path("signup", views.signup_view, name='signup'),
path('login', views.login_view, name='login'),
path("", views.index, name='index'),
path('taxi', views.taxi_view, name='taxi'),
path('delivery', views.delivery_view, name='delivery'),
path('notice', views.notice_view, name='notice'),
path('mypage', views.mypage_view, name='mypage'),
path('board_delivery', views.board_delivery),
path('board_taxi', views.board_taxi),
]