I am developing a Django application, however I recently changed the overall architecture plan. I no longer need the web infrastructure, just a Python script, so I am moving from using ORM Django to using SQLAlchemy to create and manage a database.
Previously, I used the Django Admin interface to view everything that was published by users (who are added to the database) for their moderation.
I still need a way to moderate the user-added content through the website. I think there are two options:
- Create your own web admin interface from scratch :(
- Use an existing library that simplifies the creation of an admin interface (for a database created using SQLAlchemy).
I started looking for FormAlchemy . If you have experience working with FormAlchemy: is it possible to create an admin interface with it, and is this a specific structure that is preferable to create with?
Otherwise, do you know of any good solutions to the SQLAlchemy admin interface problem?
Jon cox
source share