So I started a new project to transpile #django templates into JS script so you can render them both on server and client side : https://github.com/christophehenry/django-template-transpiler
The rationale is that there are situation where you can't afford HTTP queries to render parts of the UI with something like #HTMX. With that, you can render them everywhere using a single source of truth.
It is written in #Rust and heavily based on django-rusty-templates.
I'm looking forward to hear your feedback on this