CMS Development

jestlinbaum
Participant

Export to Template - Rich Text

Résolue

This seems ridiculous but I can't figure it out. All I want to do is expot a rich text module to template context.

 

{% rich_text "standard_intro" label="Standard Hero Text", export_to_template_context=True %}

But I don't know what to put here to retreive it's content:

{{ widget_data.standard_intro.????? }} 

I've looked all over the HubL Docs and can't seem to find an answer.

 

Thanks! 

0 Votes
1 Solution acceptée
Jsum
Solution
Conseiller clé

Export to Template - Rich Text

Résolue

@jestlinbaum,

 

Think about where you put the content.

{% rich_text 'random' label='some random content', html="<p>Hi!</p>", export_to_template_context=True %}

This is an important concept, particularly in cases where modules might have more than one attribute you want to get data from like an img module with an src and alt_text attribute. That last part of the name target is going to be the attribute you want the data from. If you want the label make it label, if you want the src make it src, if you want the value you make it value. In this case it is html:

{{ widget_data.random.html }}

Voir la solution dans l'envoi d'origine

0 Votes
4 Réponses
Jsum
Solution
Conseiller clé

Export to Template - Rich Text

Résolue

@jestlinbaum,

 

Think about where you put the content.

{% rich_text 'random' label='some random content', html="<p>Hi!</p>", export_to_template_context=True %}

This is an important concept, particularly in cases where modules might have more than one attribute you want to get data from like an img module with an src and alt_text attribute. That last part of the name target is going to be the attribute you want the data from. If you want the label make it label, if you want the src make it src, if you want the value you make it value. In this case it is html:

{{ widget_data.random.html }}
0 Votes
tmtkobedmx8
Membre

Export to Template - Rich Text

Résolue

How come the default text/place holder does not appear although the html parameter is present

0 Votes
dranreb
Contributeur | Partenaire solutions Diamond
Contributeur | Partenaire solutions Diamond

Export to Template - Rich Text

Résolue

Thanks for your insight @Jsum. Is it possible to pass this data to global modules?

0 Votes
Jsum
Conseiller clé

Export to Template - Rich Text

Résolue

@dranreb,

 

I don't have any practical experience playing with that, but the thing is the data from the module is exported to the template so I would assume that as long as the global module is on a page containing the module that you have export and whose data you are targeting then it should work. I would also assume that the module that is exported to the template should exist above any use of it's data tokens. 

 

I don't think you can add editable fields to a global module though so I do not believe you could contain the exported module inside of the global module. It would be the equivilant of static text anyways.

0 Votes