Andy Ide featured on Django Chat
On Oct 27th, 2022, I was featured on Django Chat – the largest Django podcast in the world. We discussed: Listen to the podcast here!
On Oct 27th, 2022, I was featured on Django Chat – the largest Django podcast in the world. We discussed: Listen to the podcast here!
I was building a form today in django-unicorn and wanted to implement a radio button. This is how you do it: This will render to: The main trick for rendering radio buttons is to write unicorn:model=”new_event_frequency” in each radio html… Read More »Adding a radio button using django-unicorn
For those you run pipenv install django-unicorn And you get a dependency resolution conflict relating to orjson like this: Then you are probably running a 32 bit version of python. orjson needs a 64 bit version. To fix this I… Read More »Resolving orjson dependency conflict when installing django-unicorn in Windows