Why has Django Admin proliferated so strongly in the Django ecosystem while being unreplicated elsewhere?
Ask HN: Why aren't Django Admin style dashboards popular in other frameworks?
1–10 of 86 posts
Re: Ask HN: Why aren't Django Admin style dashboards popular in other frameworks?
#2Re: Ask HN: Why aren't Django Admin style dashboards popular in other frameworks?
#3Also, most applications have constraints like "X can only be 2 if and only if Y is equal to Z" ... there was no way to specify that constraint to the admin interface, so someone could set X to be 2, and it would break programmer assumptions who wrote code expecting Y to be equal to Z.
Re: Ask HN: Why aren't Django Admin style dashboards popular in other frameworks?
#4For js/node
Re: Ask HN: Why aren't Django Admin style dashboards popular in other frameworks?
#5Re: Ask HN: Why aren't Django Admin style dashboards popular in other frameworks?
#6I totally agree though- huge selling point of Django!
Re: Ask HN: Why aren't Django Admin style dashboards popular in other frameworks?
#7Re: Ask HN: Why aren't Django Admin style dashboards popular in other frameworks?
#8At Heii On-Call https://heiioncall.com/ we are using Active Admin https://activeadmin.info/ for Ruby on Rails, which seems quite similar to the Django admin. In my experience, it's mostly useful as a fairly basic read-only view of what's in the database. In Rails, it's so easy to whip together a custom view that we tend to do that, and the Active Admin is nice to have but I wouldn't say "tremendous value".