adiciona o buscador e cria views e templates para ele

This commit is contained in:
root
2025-03-07 15:31:53 +01:00
parent 1cd93f7955
commit 3f5ac79051
18 changed files with 378 additions and 235 deletions

View File

@ -2,6 +2,6 @@ from django.urls import path
from .views import search_view, spellcheck_view
urlpatterns = [
path('pesquisa/', search_view, name='search_view'),
path('spellcheck/', spellcheck_view, name='spellcheck_view'),
path("pesquisa/", search_view, name="search_view"),
path("spellcheck/", spellcheck_view, name="spellcheck_view"),
]