Overslaan naar inhoud
Menu
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Deze vraag is gerapporteerd
1 Beantwoorden
8502 Weergaven

I have a thumbnail gallery section on odoo website. That is configurable from backend. Now for each thumbnail I want to create a website page with its contents. How can I do that? I didn't find any reference to do this.

Regards.

Avatar
Annuleer
Beste antwoord

Tanzil,

Add link for each object of the thumbnail  like this

<a t-att-href="'/foo/(slug(obj))">
     <!--Print object-->
     <t t-esc="obj.name"/>
</a>

In the controller

@http.route(['/foo/<model("Your.Model"):obj>'], type='http', auth='public', website=True)
def action_foo(self, obj, **post):
     return request.website.render('Your_Module.Your_Template', {'object', obj})

Pint the value of that object in temlate

<template id="Your_Module.Your_Template">
     ..................
     <t t-esc="object.name"/>
</template>

All the best !

Avatar
Annuleer
Auteur

Haha, I knew you will come to answer :) . Thanks for your support and help.

I will try it and let you know.

Gerelateerde posts Antwoorden Weergaven Activiteit
3
mei 25
2691
0
dec. 23
2393
1
jul. 23
2446
0
jul. 22
1920
3
sep. 21
21931