| ▲ | mamcx 4 days ago | |
This sound fantastic and Django is the main thing I miss from python. htmx+ tailwindcss is the one combo that is right and I use it so seeing is the direction give me hope. Some notes, I hope can be considered!: - The main thing is the auto admin, then `auth`, is great that the `auth` is mean to have a one-to-one connection for your own extensions - The main pain is that everything is tangled to the ORM and the auto-admin What I have done informally is that with traits I have something like `ListQuery` and compose `Paginate(ListQuery)`. Then pure descriptors of what the ui DO, but not what it looks like and not even html at all. THEN, I inject the stucts/enums (all Ui is things like `Label{...}` with not logic at all in templating, all the server side is in charge of pre-render) into some templating and there is where the ui is alive, but replacing is 100% doable and expected. What I miss is a way to introspect to auto-generate things more auto. | ||