How do I remove the "Home" button in Python's Flask-Admin library?
from flask_admin import Admin
flask_admin = Admin(app,
name='Customer Admin',
template_mode='bootstrap3',
# endpoint refers to the blueprint [e.g. url_for('admin_cust.index')] where index() is the function/view
index_view=SecuredAdminIndexView(url='/admin_cust', endpoint='admin_cust')
)
# Add model (database table) views to the page
flask_admin_cust.add_view(UserView(User, db.session, category='Users', name='View/Edit User', endpoint='users'))
flask_admin.add_view(CustSubGroupView(CustSubGroup, db.session, name='Groups', endpoint='groups'))
flask_admin.add_view(GwView(Gw, db.session, endpoint='units', name='Units'))

