lib.itmens/common/urls.py

12 lines
316 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-02-20 19:09:23 -05:00
path('search.json/', search, name='search.json'),
2022-01-22 14:04:21 -05:00
path('external_search/', external_search, name='external_search'),
2020-05-01 22:46:15 +08:00
]