Flask-Admin is an available extension that helps in the creation of admin interfaces for our application in a simpler and faster way. All the subsequent recipes in this chapter will focus on using and extending this extension.
Using the Flask-Admin extension
Getting ready
First, we need to install the Flask-Admin extension:
$ pip3 install Flask-Admin
We will extend our application from the previous recipe and keep building on this.
How to do it...
Adding a simple admin interface to any Flask application using the Flask-Admin extension is just a matter of a couple...