Couldn't find any info on how to replace the default Home screen for Flask-Admin, so this is how you do it.
from flask.ext.admin import Admin, expose, AdminIndexView
class HomeView(AdminIndexView):
@expose("/")
def index(self):
return self.render('admin/home.html')
admin = Admin(app, "MadeInStockholm.se", index_view=HomeView(name='Home'))
view raw gistfile1.py hosted with ❤ by GitHub