lib.itmens/common/urls.py

11 lines
192 B
Python
Raw Normal View History

2020-05-01 22:46:15 +08:00
from django.urls import path
from .views import *
app_name = 'common'
urlpatterns = [
path('', home),
path('home/', home, name='home'),
path('search/', search, name='search'),
]