urls.py 646 B

1234567891011121314
  1. from django.conf import settings
  2. from django.conf.urls.static import static
  3. from django.urls import path
  4. from .views import *
  5. urlpatterns = [
  6. path('', HomeView.as_view(), name='home'),
  7. path('CreatProduct/', CreatProduct.as_view(), name='CreatProduct'),
  8. path('Login/', Login.as_view(), name='Login'),
  9. path('Logout/', Logout.as_view(), name='Logout'),
  10. path('Profile/', Profile.as_view(), name='Profile'),
  11. # path('register/', views.sign_up, name='register'),
  12. ] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)