I have to develop a module that is called news feed for posting new news feed to a website but when I am doing this I can not retrieve images from the database to view on the website. I have to get Title and Content but the image is not yet.
anyone can help me how to fix
below is sample code that I use to retrieve title as well as content
<table>
<tbody>
<t t-foreach = "posted" t-as = "news_feed" >
<td> <b> <t t-esc = "news_feed.news_feed_title" /> <br/> </b> <t t-esc = "news_feed.news_feed_content" /> <br/> </td> </t> </tbody>
</table>