Search code examples
google-app-enginewebapp2

Admin panel for webapp2


I'm implementing an ecommerce app on Google App Engine, using the webapp2 framework.

The idea is that apart from the app, there should be some sort of admin panel, similar to what Django provides, that will let my clients upload products, manage users and so on. Is there some kind of package, that would automatically generate the admin modules and views for me, the way Flask-Admin does?

Thanks a lot!


Solution

  • This snippet: http://flask.pocoo.org/snippets/59 seems to indicate admin is compatable with app engine, in that it mixes GAE and flask-admin code.

    As an alternative WTForms can be used to generate forms directly from models and feed the data back into the DB and it has a GAE component built in already: http://wtforms.simplecodes.com/docs/1.0.3/ext.html#module-wtforms.ext.appengine