I am creating website theme and in that i have created my custom module for my services. now i want to show them on home page.
<t t-foreach="request.env['websoly_apps.websoly_apps'].search([])" t-as="WebsolyApp">
<div class="appstore-i">
<a href="#" >
<img class="appstore-image" t-att-src="'data:image/png;base64,%s' % WebsolyApp.photo"/>
<span><p class="appstore-name"><t t-esc="WebsolyApp.name"/></p></span>
<span><p class="appstore-download"><t t-esc="WebsolyApp.downloads"/> <i class="fa fa-download" aria-hidden="true"></i></p></span>
</a>
</div>
</t>
it works fine but only extent when i am login. when i open it in incognito it gives error.