You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
341 B
Python
18 lines
341 B
Python
#from django.contrib import admin
|
|
from django.urls import path
|
|
|
|
from .views import (
|
|
shop,
|
|
user,
|
|
basket,
|
|
history,
|
|
)
|
|
|
|
urlpatterns = [
|
|
# страницы
|
|
path("shop/", shop, name="shop"),
|
|
path("user/", user, name="user"),
|
|
path("basket/", basket, name="basket"),
|
|
path("history/", history, name="history"),
|
|
]
|