CMS Development

jestlinbaum
参加者

Export to Template - Rich Text

解決

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 いいね!
1件の承認済みベストアンサー
Jsum
解決策
キーアドバイザー

Export to Template - Rich Text

解決

@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 いいね!
4件の返信
Jsum
解決策
キーアドバイザー

Export to Template - Rich Text

解決

@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 いいね!
tmtkobedmx8
メンバー

Export to Template - Rich Text

解決

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

0 いいね!
dranreb
投稿者 | Diamond Partner
投稿者 | Diamond Partner

Export to Template - Rich Text

解決

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

0 いいね!
Jsum
キーアドバイザー

Export to Template - Rich Text

解決

@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 いいね!