add quickinfo app

This commit is contained in:
Seth Ladygo
2019-08-02 15:40:51 -07:00
parent 02a4080c48
commit 6c23d30897
10 changed files with 188 additions and 0 deletions

8
quickinfo/urls.py Normal file
View File

@ -0,0 +1,8 @@
from django.urls import path
from . import views
urlpatterns = [
path('search', views.search, name='quickinfo_search'),
path('result', views.result, name='quickinfo_result'),
]