We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c0c050 commit 617d3faCopy full SHA for 617d3fa
templates/index.jinja.html
@@ -2,7 +2,8 @@
2
3
{% block content %}
4
5
- <h1>Text search example</h1>
+ <a href="https://github.com/tofran/fastapi-htmx-full-text-search-demo/">Source code</a>
6
+ <h1>Python FastAPI HTMX full-text-search demo</h1>
7
8
<form
9
hx-get="/html-api/items"
text_search_app/app.py
@@ -24,6 +24,7 @@ async def lifespan(app: FastAPI):
24
25
app = FastAPI(
26
title="Python FastAPI HTMX full-text-search demo",
27
+ description="[Source code](https://github.com/tofran/fastapi-htmx-full-text-search-demo/)",
28
debug=DEVELOPMENT_MODE,
29
openapi_url="/openapi.json" if DEVELOPMENT_MODE else None,
30
lifespan=lifespan,
0 commit comments