I can't believe you're still doing these tutorials. Your work is beyound expectations. To be frank with you, "You're very much sefless". You always enlighten people. This is what I call the TRUE GOSPEL. I really appreciate all your works.
Came from another one of your videos, you can't imagine my relief when I saw you also do htmx tutorials. Keep up the great work, love the Django and HTMX content
I have no doubt that this teacher will reach 10,000 users in no time. Simple reason is that he knows how to implement and utilize the capabilities of external packages
@@bugbytes3923 I hope you can design an e-commerce website and make it as a series of tutorials. You are among the best in terms of explaining the steps.
@@graczew Thanks a lot for the support over the time, Krzysztof. Django will always be a core part of the content, even with some other stuff mixed in.
Spectacular mate thx! How would you dynamically add more fields/rows to one form? For example, you want to add and number for some, but then want to add additional information, rows, for other contacts and the additional info isn't necessarily 'name' and 'number'.
Great tutorial as always! Thank you very much! What if I have to present two different forms on the user but allow him/her to add rows only to one? Consider a Band - Musician app where in each entry there will be only one Band form and any number of musicians... Say: Band: Pink Floyd, Year Formed: 1965, Active: True Musician: David Gilmour, Instrument: Guitar etc. Is it better to use a formset for the Musician's instances? Thank in advance.
When working with vanilla forms like this `hx-boost=true` is a great attribute. As for having the button outside of the form you could simply use the `form` attribute, like this `Submit`.
Hello BugBytes, You have been amazing since I found your channel. Can you make a video on how to use htmx to update dynamic forms /formset like this one
Can this be used for a single field in a model? For example. You use htmx to display a field in a model on a form only when another model field choice is selected.
I am struggling with something, can you help please. How do we deal with forms errors. I am able to show them, but not able to remove them, because of when the form is valid, it's adding a new line but of course not removing the htmp errors tags.
Maybe an idea for the next video (django,htmx): How do you create a "wizard" where the questions influence each other. like formA yes/no question (Would you like to know more) if yes -> ask for mail(q1a) ask for name (q1b) --> go to formB if no -> go to form C formB yes/no question (Would you like to know our promo's) if yes: Ask more questions if no: go to end .... at the end I it should return a dict with { q1: true, q1a: "answer", q1b: "answer", q2: false, q2a: "", q2b: "", q3: ... } I know there are "questionaire" django projects but for some reason I can't get my head around them.
How to make drop-downs which can fetch only the distinct values from psql? And next drop down in one row should depend on values of the previous choice and etc. I have to filter up the product price based on 4 filters like in excel and then fetch the corresponding price from DB to form an invoice. Thanks in advance!
Thanks a lot! I did this video on Websockets + HTMX that uses Django-Channels. ruclips.net/video/FcVwDEcu6K0/видео.html There will be a full course on Channels this year at some point. I'll start planning this when I get some time in a few months.
I wonder. Would you build an app like Typeform with HTMX? Conceptually it seems like SPA approach is more suitable, just because it seems easier to build out. Even the display of the forms themselves, which in Typeform may include some logic, I.e rendering different forms acocording to answer provided…
Best thing you did ma'am, can we validate all Input value at once while sending all forms at once. . Like all debits must be equal to total credits. Hope you got my point.
Nice work! Every video is very helpful to understand django and htmx! In this example it's possible to limit the number of forms where the user can create? hx-get="{% url 'create-contact' %}" hx-target="#contact-forms"
It could be done in Flask, with a few alterations - switch the Django forms with WTForms, for one. flask.palletsprojects.com/en/3.0.x/patterns/wtforms/ All the HTMX stuff can be done with Flask in a very similar manner.
Thank you so much for your content, always helpful. I’ve just used this method and it works perfectly. And i’d like to know what if in the partial form we want to use django-select2 on one of the field. Thank you once more. 😎
Hello. Thanks for the video lesson. As always, everything is at the highest level. Could you show how to complete the following task: a block with comments under the post, with sub-levels (replies to comments) and a separate block that adds up the number of comments. Thank you.
I can't believe you're still doing these tutorials. Your work is beyound expectations. To be frank with you, "You're very much sefless". You always enlighten people. This is what I call the TRUE GOSPEL. I really appreciate all your works.
Thanks a lot! Means a lot, thank you.
Whenever I see new BugBytes videos, I click "like" first, before grabbing a drink to go along with watching the video. 😁
Thanks! Glad you like the videos 👍
same
Came from another one of your videos, you can't imagine my relief when I saw you also do htmx tutorials. Keep up the great work, love the Django and HTMX content
Thanks a lot Alek! Glad you're liking the content - will keep going 💪
I have no doubt that this teacher will reach 10,000 users in no time. Simple reason is that he knows how to implement and utilize the capabilities of external packages
Thanks a lot for the nice comment, really appreciate it!
Subscribed for the amazing combination of relevant web development content and a Scottish accent
Thank you, and greetings from Glasgow! 😄
One of the best tutorials I have seen so far for you....
Thanks a lot.
Thanks a lot, glad you liked it!
@@bugbytes3923 I hope you can design an e-commerce website and make it as a series of tutorials. You are among the best in terms of explaining the steps.
You have the best videos on HTMX. Thanks for sharing.
Thanks a lot, appreciate it!
Your content is a pure gold mate. Thanx for your time and effort to make this.
Thanks a lot mate. Glad it's being well received!
@@bugbytes3923 I'm follow your channel for longer time and content is really useful. I just hope you will not stop make django content.
@@graczew Thanks a lot for the support over the time, Krzysztof. Django will always be a core part of the content, even with some other stuff mixed in.
This is awesome; keep on the good work. The video explains what I need to complete my project.
Glad to hear the video has helped! Thank you for the support!
Master🙌🏾 , just a delight your tutorials from the day one till today. Thank for everything you're doing for others.
Thanks Seydina! Much appreciated!
Spectacular mate thx! How would you dynamically add more fields/rows to one form? For example, you want to add and number for some, but then want to add additional information, rows, for other contacts and the additional info isn't necessarily 'name' and 'number'.
Another excellent video!
Thank you Peter!
Great tutorial as always! Thank you very much! What if I have to present two different forms on the user but allow him/her to add rows only to one? Consider a Band - Musician app where in each entry there will be only one Band form and any number of musicians... Say:
Band: Pink Floyd, Year Formed: 1965, Active: True
Musician: David Gilmour, Instrument: Guitar
etc.
Is it better to use a formset for the Musician's instances?
Thank in advance.
When working with vanilla forms like this `hx-boost=true` is a great attribute. As for having the button outside of the form you could simply use the `form` attribute, like this `Submit`.
Good tips, thanks!
Great tutorial. Is there a way to does not show the "submit all" if there is no form to submit ?
Great video again! Really, really helpful. Would love to see a follow up on how you would handle validation on the multiple submit.
cheers
Thanks a lot Craig!
Will look into an extension of the video 👍
As always great great content.
Thanks a lot!
Thank you! How would you add inline editing - htmx?
Hello BugBytes, You have been amazing since I found your channel. Can you make a video on how to use htmx to update dynamic forms /formset like this one
Could you a video on the htmx with django CBV and more advanced relations instead of 1 FK. I have a project im really struggling with... Kind regards
mantap, makasih bug bytes. bagus banget nama channel nya.
Can this be used for a single field in a model? For example. You use htmx to display a field in a model on a form only when another model field choice is selected.
Welcome back HTMX. Great as always. Can't wait for the coming full project.
Thanks!
Very nice! But what about form errors?
I am struggling with something, can you help please.
How do we deal with forms errors.
I am able to show them, but not able to remove them, because of when the form is valid, it's adding a new line but of course not removing the htmp errors tags.
Maybe an idea for the next video (django,htmx):
How do you create a "wizard" where the questions influence each other.
like
formA yes/no question (Would you like to know more)
if yes ->
ask for mail(q1a)
ask for name (q1b)
--> go to formB
if no ->
go to form C
formB yes/no question (Would you like to know our promo's)
if yes: Ask more questions
if no: go to end
....
at the end I it should return a dict with
{ q1: true,
q1a: "answer",
q1b: "answer",
q2: false,
q2a: "",
q2b: "",
q3: ...
}
I know there are "questionaire" django projects but for some reason I can't get my head around them.
How to make drop-downs which can fetch only the distinct values from psql? And next drop down in one row should depend on values of the previous choice and etc. I have to filter up the product price based on 4 filters like in excel and then fetch the corresponding price from DB to form an invoice. Thanks in advance!
greate tutorial OMG, just a question can this works with forenkyes, like add multiples instance of phone number of one person??
thank you as always for the great content , can't help but ask will you ever consider doing something about Django Channels maybe in the future ?
Thanks a lot! I did this video on Websockets + HTMX that uses Django-Channels.
ruclips.net/video/FcVwDEcu6K0/видео.html
There will be a full course on Channels this year at some point. I'll start planning this when I get some time in a few months.
it would be really cool if you can add an auto-complete to form line :D BTW really cool content
I wonder. Would you build an app like Typeform with HTMX?
Conceptually it seems like SPA approach is more suitable, just because it seems easier to build out.
Even the display of the forms themselves, which in Typeform may include some logic, I.e rendering different forms acocording to answer provided…
Please, make hx-boost tutorial :)
Good idea! Thanks.
Nice idea :)
Thank you! could you please also upload the starter code for this?
Hej BugBytes, great vid as always.
I can't seem to find your repo for this one, am I being dumb/crazy?
Would you be able to replace the Cancel button with an icon and have the same result using hx-on attribute?
Absolutely! Any icon with an hx-click trigger attached to it will work.
Best thing you did ma'am, can we validate all Input value at once while sending all forms at once. . Like all debits must be equal to total credits. Hope you got my point.
In the widget, I think we can specify required=True to ensure that any form added is required. Htmx can be used to validate as well
Nice work! Every video is very helpful to understand django and htmx!
In this example it's possible to limit the number of forms where the user can create?
hx-get="{% url 'create-contact' %}"
hx-target="#contact-forms"
Can this be done in flask?
It could be done in Flask, with a few alterations - switch the Django forms with WTForms, for one.
flask.palletsprojects.com/en/3.0.x/patterns/wtforms/
All the HTMX stuff can be done with Flask in a very similar manner.
@@bugbytes3923 Thank you! If I can suggest, try to increase font size for RUclips.
Thank you so much for your content, always helpful. I’ve just used this method and it works perfectly. And i’d like to know what if in the partial form we want to use django-select2 on one of the field. Thank you once more.
😎
Thanks a lot! I'm not sure about django-select2 in this example, but could look into that in a future video perhaps.
thank you good informations.
Thanks!
I love your videos, but I can't get this one to work. When I click add, it duplicates the entire page with the h1 title and the green add button...
Do you have source code of this app on git? I struggle to recreate this without error.
thanks alot
Thanks for watching!
Hi, Can you please share a tutorial for nested form using Django & HTMX...!!!
which one should I use? hyperscript or alpinejs...? seems like alpinejs is more popular and mature?
Both are great choices. Alpine is probably more popular and mature, though.
you are the best
Thanks a lot, appreciate the comment!
🎉🎉🎉
Thanks!!
@@bugbytes3923 thank you 🙏🙏🙏
Hello. Thanks for the video lesson. As always, everything is at the highest level.
Could you show how to complete the following task: a block with comments under the post, with sub-levels (replies to comments) and a separate block that adds up the number of comments. Thank you.
Thanks!
That's an interesting suggestion. Will add to the list, but it would require a new video and some prep.
Can you provide the source code you have created?
How to get single submit button for all multiple forms to submit to the database
There's a "Submit All" button in the latter part of this video I think, to show how to submit all the forms on the page.
Submit all button is not working for my multiple orders to submit on click
Thx.
You’re welcome!
This code is the one i am looking . can i get the code
Its possible tô make for example, a tree level form, with a product , color and sizes variants to submit ALL together and get the fk for each one?
HTMX with django is really good, but how to validation all form, which if one form fail all form fail submit too
life saver thanks
Hello Johnson,
What are you developing? 😅.
Thanks!
@@peterevance a system for managing invoices and delivery notes so i need a way to add multiple items and save them at a go
@@johnsonwambiru8497 Ah , I see.
@BugBytes had a video on something like that too. Something like Form Wizard tutorial.
Thanks sir
You're welcome! Thanks for watching.
Can you share the source code for this
Was there a reply to this request for code?
thank
You're welcome, thanks!
why not use one form with multiple rows 🧐
that repo is all broken, the code hasn't been updated for 3 year and is no longer working with django
man you do great tutorials, but can't understand how "div" element became to be "dev" in pronunciation, same for "file" -> "fail"
Thanks! Sorry, the Scottish accent is quite particular about these things.