Please how can I include pictures in my blog post through admin in django?
You must be logged in to post. Please login or register an account.
If you're allowing the admin to post things with the |safe attribute, then you can just post pure HTML in some cases. Otherwise you could build an image uploader that does this for you, which is the more ideal route. I don't know of any guide that does that for Django, however. You'd probably have to build your own.
-Harrison 8 years ago
You must be logged in to post. Please login or register an account.
But can I do that with flask
-tunjineo 8 years ago
You must be logged in to post. Please login or register an account.
Yes, you can do such a thing in any web development language.
-Harrison 8 years ago
You must be logged in to post. Please login or register an account.
I added an image field to models, then created a file in which d image is uploaded to, So when I went to admin, I clicked on the image post den uploaded the file which worked perfectly. Then I tried loading d page, instead of loading the image, it just showed the image name. What can I do to rectify this error or is the problem from url configurations
-tunjineo 8 years ago
You must be logged in to post. Please login or register an account.
Never mind, I have solved the problem
-tunjineo 8 years ago
You must be logged in to post. Please login or register an account.