CMS Development

jestlinbaum
Teilnehmer/-in

Export to Template - Rich Text

lösung

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 Upvotes
1 Akzeptierte Lösung
Jsum
Lösung
Autorität

Export to Template - Rich Text

lösung

@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 }}

Lösung in ursprünglichem Beitrag anzeigen

0 Upvotes
4 Antworten
Jsum
Lösung
Autorität

Export to Template - Rich Text

lösung

@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 Upvotes
tmtkobedmx8
Mitglied

Export to Template - Rich Text

lösung

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

0 Upvotes
dranreb
Mitwirkender/Mitwirkende | Diamond Partner
Mitwirkender/Mitwirkende | Diamond Partner

Export to Template - Rich Text

lösung

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

0 Upvotes
Jsum
Autorität

Export to Template - Rich Text

lösung

@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 Upvotes