Flask-AdminLTE-Full

Flask-AdminLTE-Full is an extension for Flask that integrates the AdminLTE template with most of the features.

Installation

Install the latest stable version:

$ pip install flask-adminlte-full

or install development version (bugs are possible):

$ pip install https://github.com/kyzima-spb/flask-adminlte-full/archive/dev-master.zip

Configuration

To get started all you need to do is to instantiate a AdminLTE object after configuring the application:

from flask import Flask
from flask_adminlte_full import AdminLTE

app = Flask(__name__)
# read config
adminlte = AdminLTE(app)

A list of all available configuration parameters can be found in the Configuration section.

i18n

To enable internationalization, install one of the Flask-Babel or Flask-BabelEx extension:

$ pip install Flask-Babel
# or
$ pip install Flask-BabelEx

API

HTML Forms