Replies: 1 comment
-
|
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have a column in the db that store image_url and in the admin panel I want to show that image in the list and when I want to create new entry I want to upload an image where it stores in s3 bucket, how I can customize the ing tag instead showing the text url in the admin listing
`class Resturant(Base):
tablename = "resturants"
`
class ResturantAdmin(ModelView, model=Resturant): column_list = [ Resturant.name, Resturant.logo ]Beta Was this translation helpful? Give feedback.
All reactions