flask-admin icon indicating copy to clipboard operation
flask-admin copied to clipboard

Simple and extensible administrative interface framework for Flask

Results 30 flask-admin issues
Sort by recently updated
recently updated
newest added

I want my login and register pages to have the same layout as the admin pages, but I always get the infamous errors showing that 'admin_base_template' is undefined. How can...

This is not an issue this is more like a question, i'm working with file admin and i want to add an column_extra_row_actions, i have tried that using the following...

First of all I like to show you my test project skeleton: ``` app.py app/ |--mysite/ |--------__init__.py |--------models.py |--------views.py |--------templates/ |-----------------index.html |--admin/ |--------__init__.py |--------models.py |--------views.py |--------templates/ |-----------------editor.html ``` In app.py,...

Hi, I am absolutely beginner in Flask-Admin. When I try examples, i got exception: jinja2.exceptions.TemplateNotFound: admin/master.html. As jinja doesn't see master template in site-packages/flask_admin/templates??? Any hint, please?

Hi, I've been lookinh for in the documentation and examples but I couldn't find it yet. There is a way to use dropdown menu or multilevel menu? For example I...

[Use the sqlalchemy example](http://docs.sqlalchemy.org/en/latest/orm/composites.html): start = composite(Point, x1, y1) This will reproduce the warning `flask_admin/contrib/sqla/view.py:426: UserWarning: Can not convert multiple-column properties `

Hello, I'm helping someone learn to use Vue.js and Flask together, and since both Vue.js and Flask use the {{ }} syntax, I've set Flask to use %% %% instead....

contrib.peewee fails importing PrimaryKeyField, it has been changed to AutoField.

Flask Admin use get_url instead of url_for in jinja template. Flask-S3 override url_for in jinja template to use static file on S3. Could you provide a way to get admin...

I've a Task model and User model and I added task model to the UserModelView in inline_models, and I get the expected behavior with list of tasks and add task...