This is very early EXPERIMENTAL attempt to write mongoengine backend for flask-admin (see /contrib/mongoenginemodel). It probably contains a lot of bugs/not implemented stuff. Please proceed to https://github.com/mrjoes/flask-admin if you're looking for production version of flask-admin (w/o mongoengine).
This is library for building adminstrative interface on top of Flask framework.
Instead of providing simple scaffolding for the SQLAlchemy models, Flask-Admin provides tools that can be used to build adminstrative interface of any complexity, using consistent look and feel.
Small example (Flask initialization omitted):
app = Flask(__name__) admin = Admin() admin.add_view(ModelView(User, db.session)) admin.add_view(GalleryManager(name='Photos', category='Cats')) admin.setup_app(app)
If you're looking for 0.x version of the Flask-Admin written by Andy Wilson, check here.
Flask-Admin is extensively documented, you can find documentation here.
Flask-Admin is built with help of Twitter Bootstrap and Chosen.
Some ideas were taken from the Flask-Admin by Andy Wilson.
Library comes with few examples, you can find them in examples directory.