2020-11-09 04:32:36 +01:00
|
|
|
<div class="message-block primary">
|
2024-11-22 16:45:50 +01:00
|
|
|
{{#if this.showIcon}}
|
|
|
|
{{d-icon this.icon}}
|
2020-11-09 04:32:36 +01:00
|
|
|
{{/if}}
|
2024-11-22 16:45:50 +01:00
|
|
|
<span class="message-content">{{html-safe this.message}}</span>
|
|
|
|
{{#if this.hasItems}}
|
2020-11-09 04:32:36 +01:00
|
|
|
<ul>
|
2024-11-22 16:45:50 +01:00
|
|
|
{{#each this.items as |item|}}
|
2020-11-09 04:32:36 +01:00
|
|
|
<li>
|
|
|
|
<span>{{d-icon item.icon}}</span>
|
2021-04-12 16:19:53 +02:00
|
|
|
<span>{{html-safe item.html}}</span>
|
2020-11-09 04:32:36 +01:00
|
|
|
</li>
|
|
|
|
{{/each}}
|
|
|
|
</ul>
|
|
|
|
{{/if}}
|
2020-04-20 13:40:32 +02:00
|
|
|
</div>
|
|
|
|
|
2024-11-22 16:45:50 +01:00
|
|
|
{{#if this.showDocumentation}}
|
2020-11-09 04:32:36 +01:00
|
|
|
<div class="message-block">
|
2021-04-12 16:19:53 +02:00
|
|
|
{{d-icon "question-circle"}}
|
|
|
|
|
2024-11-22 16:45:50 +01:00
|
|
|
<a href={{this.url}} target="_blank" rel="noopener noreferrer">
|
|
|
|
{{this.documentation}}
|
2020-11-09 04:32:36 +01:00
|
|
|
</a>
|
|
|
|
</div>
|
2023-07-10 08:55:54 +02:00
|
|
|
{{/if}}
|