β How can we use different Bootstrap themes through multiple `Admin` instances? π¨βπ» This is how I tried to do it: ```python ... app.config['FLASK_ADMIN_SWATCH'] = 'cerulean' admin1 = Admin(app, endpoint='admin1') app.config['FLASK_ADMIN_SWATCH'] = 'cosmo' admin2 = Admin(app, endpoint='admin2') ... ``` β But this does NOT work, I wrote this to clarify what I want to do with my issue. _Thanks!_