Flask-Admin examples

These are some of the examples that can be found in the Flask-Admin GitHub repo at https://github.com/mrjoes/flask-admin. Feel free to play around. This site gets refreshed every 10 minutes or so.

Simple views

Add a few of your own views to the admin interface. You can add links to them in the top navbar, but you don't have to.

view example

SQLAlchemy models

Add some basic CRUD-views for your models.

view example

Customize the layout

Take control of the look & feel of your admin interface.

view example

Files, images & custom forms

Define custom forms using form rules, and quickly add file/image management to your application.

Note: a 5Mb limit has been placed on the size of uploaded files & images for this example.

view example

Authentication

Use Flask-Login to authenticate users.

view example