Django Allauth user settings on a single page using HTMX
I want to make a single page for all my user settings, however each of the user settings is fetched from a separate view. One solution is to override the allauth views with a single view that can handle the various forms for password, email, etc. But that would take time and potentially introduce bugs. Ideally I want to use as much unaltered code that is provided by allauth as possible to reduce development, testing and maintenance costs.
Continue reading