Posts by Marvin Correia • 101 points
2 posts
-
0
votes1
answer119
viewsA: Why am I getting this error "Operationalerror at /admin/core/comment"?
The app is trying to access a column of your database that doesn’t exist, this error occurs because you need to run the migrations after any changes to your app’s models.py file. Execute these…
-
0
votes2
answers766
viewsA: Load image in html from saved path in Django database
As stated above, to be able to upload the image, its url needs to be correct which implies you have a static file server. The best way to do this would be to use a Imagefield, and configuring the…