lib.itmens/common/urls.py

11 lines
262 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'),
2022-01-22 14:04:21 -05:00
path('external_search/', external_search, name='external_search'),
2020-05-01 22:46:15 +08:00
]