https://htmx.org logo
Hi, I'm using htmx on my django project https://gi...
# 🔥-django-htmx
c
Hi, I'm using htmx on my django project https://github.com/pcampos119104/magapp and a I'm loving it, but now I have an idea to put a tag field on my model. I have a lib that give me the abstraction of a tag, tagulous My model field:
Copy code
tags = tagulous.models.TagField(
        force_lowercase=True,
        null=True,
        blank=True,
        help_text="tags da receita",
        autocomplete_view="recipe_tag_autocomplete",
    )
My url conf to fetch known tags:
Copy code
path(
        "partial/tag/autocomplete/",
        tagulous.views.autocomplete,
        {"tag_model": Recipe},
        name="partial_autocomplete_recipe_tag",
    ),
How can I do something like that https://larainfo.com/blogs/bootstrap-5-tags-input-examples on htmx, I'm not good at frontend Thanks in advance