Trying Wagtail
Overview I tried Wagtail, so here are my notes on issues I encountered. I basically followed this tutorial: https://docs.wagtail.org/en/v5.0.1/getting_started/tutorial.html Search Function When I added a page with a Japanese title of “My First Article” (はじめての記事), the following search did not return any results. http://localhost:8000/admin/pages/search/?q=はじめて On the other hand, the following search did return results. It seems that partial matching for Japanese is not supported by default. http://localhost:8000/admin/pages/search/?q=はじめての記事 Wagtail API The API documentation was found at: ...