11 lines
192 B
Python
11 lines
192 B
Python
![]() |
from django.urls import path
|
||
|
from .views import *
|
||
|
|
||
|
|
||
|
app_name = 'common'
|
||
|
urlpatterns = [
|
||
|
path('', home),
|
||
|
path('home/', home, name='home'),
|
||
|
path('search/', search, name='search'),
|
||
|
]
|