CMS Development

jestlinbaum
Participante

Export to Template - Rich Text

resolver

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 Avaliação positiva
1 Solução aceita
Jsum
Solução
Conselheiro(a) de destaque

Export to Template - Rich Text

resolver

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

Exibir solução no post original

0 Avaliação positiva
4 Respostas 4
Jsum
Solução
Conselheiro(a) de destaque

Export to Template - Rich Text

resolver

@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 Avaliação positiva
tmtkobedmx8
Membro

Export to Template - Rich Text

resolver

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

0 Avaliação positiva
dranreb
Colaborador(a) | Parceiro Diamante
Colaborador(a) | Parceiro Diamante

Export to Template - Rich Text

resolver

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

0 Avaliação positiva
Jsum
Conselheiro(a) de destaque

Export to Template - Rich Text

resolver

@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 Avaliação positiva