☕ Buy a coffee: ko-fi.com/bugbytes ⭐Top resource to learn Python - datacamp.pxf.io/kOjKkV ⭐
@theetawee5 ай бұрын
Man you're giving us value with every video you upload. Thank you very much. I have never regretted turning on the notifications to be among the first to see your latest videos.
@bugbytes39235 ай бұрын
Thanks a lot man! That means a lot to hear that!
@XbowDyfin5 ай бұрын
Incase you're new to Django, if you keep getting an error when trying to implement the export and import then first off run 'pip install django-import-export' in terminal. Lastly add alongside unfold.contrib.import_export this app: import_export(shown under installed apps in the yt video but not mentioned) 13:06
@ifeanyinneji77045 ай бұрын
Been using these for my Django projects for various clients and they've loved it. Made my work so much easier and only takes some time to setup
@otabek_abdiraimovАй бұрын
this is the only tutorial you need to learn how to customize django admin panel!
@bugbytes3923Ай бұрын
Thanks a lot!
@atibyteАй бұрын
Informative video about Unfold, thanks for sharing!
@bugbytes3923Ай бұрын
Thank you!
@987Stephen15 ай бұрын
Beautiful! I'll be using this on every project! Thanks!
@bugbytes39235 ай бұрын
It's really cool, agreed!
@anandraj28952 ай бұрын
i've been using unfold for a while ,quite easy and nice
@bugbytes39232 ай бұрын
Agreed!
@nicenaija99525 ай бұрын
How can I like this video multiple times?
@bugbytes39235 ай бұрын
Haha thanks a lot, appreciate it!
@nicenaija99525 ай бұрын
Will love to see the other django-unfold features
@bugbytes39235 ай бұрын
Hoping to do some more soon!
@awesomejr.5305 ай бұрын
Amazing video and package from the tailwindcss contributors. This is really helpful and useful. 😊
@bugbytes39235 ай бұрын
Thank you!
@awusacollins5 ай бұрын
This looks better than Jazzmin admin. Have to give this a try. Thanks man
@bugbytes39235 ай бұрын
Cheers man. It's my favourite Django admin theme so far, easily.
@nicenaija99525 ай бұрын
Finally, thank you!!!
@bugbytes39235 ай бұрын
I think for open-source models, you might wanna check out ollama: github.com/ollama/ollama
@keinermendoza46315 ай бұрын
Great video
@bugbytes39235 ай бұрын
Thank you!
@vaibhavk625 ай бұрын
Awesome ❤
@bugbytes39235 ай бұрын
Thanks for watching!
@casttroff5 ай бұрын
Thanks man!
@bugbytes39235 ай бұрын
Thanks for watching man!
@Pradeep_prasad5 ай бұрын
Nice😊
@bugbytes39235 ай бұрын
Thank you!
@mrmuranga5 ай бұрын
thanks..so much value😎
@bugbytes39235 ай бұрын
Awesome - thanks!
@ashishnegi70005 ай бұрын
Love it
@bugbytes39235 ай бұрын
Thanks for watching!
@youbra42673 ай бұрын
Merci beaucoup 😍🤍
@bugbytes39233 ай бұрын
Merci! Thank you for watching!
@youbra42673 ай бұрын
@@bugbytes3923 could you please show us how to add graphs in the admin panel with unfold
@AmoahDevLabs5 ай бұрын
This is really great. It would be great if you could do a video on black and flake8.
@bugbytes39235 ай бұрын
Thanks a lot! I'll do something on those soon, for sure.
@frameff90735 ай бұрын
thank you
@bugbytes39235 ай бұрын
Thanks for watching!
@omaral-halabiah28515 ай бұрын
yes friend I very interested by "isort,, black, flakit ", can you make a video about them ?
@bugbytes39235 ай бұрын
I'll add to the list for sure! Thanks.
@Yarkanlaki5 ай бұрын
Jeez why haven't I seen this before
@bugbytes39235 ай бұрын
Exactly what I thought - amazing admin theme!
@aafan.kuware5 ай бұрын
so we have to install tailwind or it is using cdn in backend for admin site only?
@bugbytes39235 ай бұрын
No need for the CDN when using django-unfold.
@aafan.kuware5 ай бұрын
@@bugbytes3923 I have installed it successfully, but while adding new user account from django admin the form doesn't contain confirm password field. (note, I am using custom user model)
@aafan.kuware5 ай бұрын
@@bugbytes3923 Thanks it's the best UI. ❤
@aafan.kuware5 ай бұрын
import_export doesn't work properly it only exports the entire model data even if 1 row is selected, adding unfold.contrib.import_export.forms, ExportForm & ImportForm gives error cannot import name 'SelectableFieldsExportForm from import_export.forms Please assist🙏
@aafan.kuware5 ай бұрын
okay, the import error has been fixed now, I was using the older version of django-import-export. however still selected data is not exported instead all data is being exported.