Add a search form to the index

This commit is contained in:
Christian Lawson-Perfect 2025-05-04 08:22:31 +01:00
parent 4f92cbf450
commit c12f637d17
3 changed files with 19 additions and 1 deletions

View file

@ -18,5 +18,6 @@ urlpatterns = [
path('think/<slug:slug>/jj/commit', JJCommitView.as_view(), name='jj_commit'),
path('new', CreateThinkView.as_view(), name='new_think'),
path('new/<slug:slug>', RemixThinkView.as_view(), name='remix_think'),
path('search', search, name='search'),
]