1
0
Fork 0
mirror of https://github.com/Findus23/RPGnotes.git synced 2024-09-19 15:43:45 +02:00
RPGnotes/search/urls.py

10 lines
207 B
Python
Raw Normal View History

2022-04-11 22:43:06 +02:00
from django.urls import path
from search import views
2022-04-11 23:52:19 +02:00
urlpatterns = [
2022-04-11 22:43:06 +02:00
path("", views.SearchResultsView.as_view(), name="search"),
2022-04-11 23:52:19 +02:00
path("autocomplete/", views.autocomplete, name="autocomplete"),
2022-04-11 22:43:06 +02:00
]