For those who are developing with Django, what are you working on / building / learning?<p>Looking to add more cool projects on my site https://builtwithdjango.com
I am developing firedating.me using Django. It is a community of FIRE (Financial Independence / Early Retirement) enthusiasts looking for friends and a partner. Unfortunately the FIRE community is very dispersed and one can feel very lonely. So I made this site to help people build meaningful connections.<p>I am actually a huge fan of Django. It boosts my productivity a lot. The only minor issue I experience is that the way POST forms and templates work biases how I make UI. I.e. all UIs tend to be very page oriented - 1 page = 1 form - and some logic is leaking into templates. As a result, my UIs feel too coupled with the backend and this makes them harder to support. I am considering writing a separate frontend treating the backend as a blackbox instead. Wondering whether anyone experienced something similar.