Skip to content

Simple and extensible administrative interface framework for Flask

License

Notifications You must be signed in to change notification settings

dzhou/flask-admin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Flask-AdminEx

Contributors

Introduction

This is library for building adminstrative interface on top of Flask framework.

Instead of providing simple scaffolding of the SQLAlchemy models, Flask-AdminEx 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)

Documentation

Flask-AdminEx is extensively documented, you can find documentation here.

3rd Party Stuff

Flask-AdminEx is built with help of Twitter Bootstrap and Chosen.

Examples

Library comes with three examples, you can find them in examples directory.

About

Simple and extensible administrative interface framework for Flask

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 82.8%
  • HTML 12.2%
  • JavaScript 4.1%
  • Other 0.9%