2021-02-16 01:43:00 +01:00
|
|
|
{{#if loading}}
|
|
|
|
<label>{{i18n 'realtime_validations.similar_topics.loading'}}</label>
|
|
|
|
{{else if hasSimilarTopics}}
|
|
|
|
<label>{{i18n 'realtime_validations.similar_topics.results'}}</label>
|
|
|
|
<ul class="wizard-similar-topics">
|
|
|
|
{{#each similarTopics as |similarTopic|}}
|
|
|
|
<li>{{wizard-similar-topic topic=similarTopic}}</li>
|
|
|
|
{{/each}}
|
|
|
|
</ul>
|
|
|
|
{{else if noSimilarTopics}}
|
|
|
|
<label>{{i18n 'realtime_validations.similar_topics.no_results'}}</label>
|
|
|
|
{{else if showDefault}}
|
|
|
|
<label>{{i18n 'realtime_validations.similar_topics.default'}}</label>
|
|
|
|
{{else}}
|
|
|
|
<label></label>
|
2021-02-05 13:59:30 +01:00
|
|
|
{{/if}}
|