Intro to Flask-Admin

preview_player
Показать описание
In this video I demonstrate how to get Flask-Admin up and running and a few things you can do with it. Flask-Admin is great if you want to quickly build a dashboard that will give your users the ability to edit the data in the database without actually going into the database.

Рекомендации по теме
Комментарии
Автор

These videos are so good that they make me ditch Django and come back to Flask again.

wagonr_vs_world
Автор

Excellent tutorials, very clear and you show how to start from scratch, so for Python newbies (full-stack js refugees) it's great watching them. I would love to see, for example, Htmx + Flask-Admin (which I don't see anywhere) and as an added bonus with Tailwind (never mind :) ). Htmx + Flask-Admin would be incredible. Thanks for your efforts!

demystifyingdev
Автор

how to use postgresql, and such videos... man i've been learning a lot this channel!

realworldcodingapplications
Автор

thank you for sharing your knowledge!!!

vdchyed
Автор

Really useful. Do you plan to make another video and go into more detail?

Jucidful
Автор

I remember showing the relations a few years ago without having to define another class.

joryaock
Автор

This video helped me a lot, thank you very much! But i find that if I remove "user" in form_columns, the application will throw a exception called 'Cannot find reverse relation for model <class 'models.Post'>', why is this?

若水三千
Автор

no matter what i do it shows no module named flask admin. what should i do?please help

anandoshaffat
Автор

Do you have to use the SQLAlchemy in oder to make use of Flask-Admin?

svenschroder
Автор

Hey, Anthony. You're using Windows with WSL as your environment, correct? How'd you get the blue WSL box to display on the bottom left corner like that? Any other special extensions you recommend for VS Code?

doodahgurlie
Автор

Hi Anthony! Does Flask Admin works with Mongo databases as well?

lazos
Автор

Thank you for the great video. However, I am finding trouble when the User is in the models.py file and the rest of the code are in a admin.py at the top of the directory with the error of circular imports. My admin.py has the following: from flask_admin import Admin
from flask_admin.contrib.sqla import ModelView
from app import app, db
from app import models

#Create the Flask-Admin instance
admin = Admin(app, name='Admin Panel', template_mode='bootstrap3')

#Create a ModelView for the Users model and add it to Flask-Admin
admin.add_view(ModelView(models.User, db.session)) What, am I doing wrong?

petronillaserebwa
Автор

stuff like form_columns and column_list are very confusing to me. does the Admin package use this variable if it is exactly named like this?
I am not a big fan... and you should really explain why it is named like this, and why it does what it does

danielschmider
Автор

Hey Anthony please continue with this flask-admin series I'm working on this flask extension in my project and I'm not able to customize please make video for customize flask admin as well.

anuragnagar
Автор

Can u do a video saying how to secure this admin page via jwt

mubinabdulkader
Автор

I think i like django more for this reason it already really has all this built in.

DirtySouthT
Автор

this extension does not support Bootstrap5, only bootstrap4

avbolshakov