I have an application in production with a sub-standard admin interface. The app is written in PHP and is backed by PostgreSQL.
I have briefly tinkered with Django and am very impressed with how easy it is to get an admin interface up and running.
Can someone more experienced with Django please comment on:
- Can I have Django build an admin app around my existing schema with similar ease? And if so,
- Would you recommend it / are there any gotchas?
One gotcha I can see is that I'll be maintaining two models: one written in Python and one in PHP. The speed with which one can get an admin interface up-and-running with Django though, makes it very tempting.
Thanks Harry