adding content search bar in blog django

Solutions on MaxInterview for adding content search bar in blog django by the best coders in the world

showing results for - "adding content search bar in blog django"
Lynsey
13 Mar 2019
1# cities/urls.py
2from django.urls import path
3
4from .views import HomePageView, SearchResultsView
5
6urlpatterns = [
7    path('search/', SearchResultsView.as_view(), name='search_results'),
8    path('', HomePageView.as_view(), name='home'),
9]
10