diff options
author | Mia <52601045+miaapancake@users.noreply.github.com> | 2023-11-30 21:57:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-30 15:57:30 -0500 |
commit | 8d0338ade842fac0158b41c389cd26ac6ad60a8b (patch) | |
tree | ea117d0f6ea38002c251ce63011e10e788b40600 | |
parent | 2fe2f67555c9d3941c5041e1b3846f69996eb4a4 (diff) | |
download | htmx-8d0338ade842fac0158b41c389cd26ac6ad60a8b.tar.gz htmx-8d0338ade842fac0158b41c389cd26ac6ad60a8b.zip |
Fix the Django example in www/content/examples/confirm.md (#2062)
-rw-r--r-- | www/content/examples/confirm.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/content/examples/confirm.md b/www/content/examples/confirm.md index d1f00c49..f6a8ca7a 100644 --- a/www/content/examples/confirm.md +++ b/www/content/examples/confirm.md @@ -60,7 +60,7 @@ This allows to use `hx-confirm`'s value in the prompt which is convenient when the question depends on the element e.g. a django list: ```html -{% for row in clients %} +{% for client in clients %} <button hx-post="/delete/{{client.pk}}" hx-confirm="Delete {{client.name}}??">Delete</button> {% endfor %} ``` |