- https://emma.has-a.blog/articles/django-admin-deux-bringing-admin-back-to-django.html (Django Admin Deux: Bringing Django's Admin Back to Django) by @EmmaDelescolle

- https://codeberg.org/emmaDelescolle/django-admin-deux (django-admin-deux (pronounced "django admin two") is a complete reimagining of Django's admin interface. While maintaining familiar concepts and naming conventions, it provides superior extensibility, reusability, and modern UI/UX through a plugin-first architecture)

--<--
Closing Thoughts

Django's admin is one of the framework's most celebrated features.

It should showcase Django's best patterns, not hide them behind a separate mental model.

What if the admin could be a teaching tool ?

What if customizing the admin made you a better Django developer overall ?

What if the admin worked like Django?

That's what Django Admin Deux (https://django-admin-deux.readthedocs.io/en/latest/) explores.

It's not production-ready, but it shows what's possible when we prioritize "works like Django" from the start.

And honestly? It feels really good to just... use Django.

-->--

#Django #DjangoAdmin #DjangoAdmin2

Django Admin Deux: Bringing Django's Admin Back to Django

Django's built-in admin is powerful, but it's essentially a separate framework within Django. After attempting to modernize django-admin2, I realized we needed a fresh approach: an admin interface that works like the rest of Django, built on generic CBVs, plugins, and view factories. Meet Django Admin Deux—a proof-of-concept admin where CRUD operations are just actions, knowledge transfers both ways, and everything feels like Django.

Emma has a blog