13 lines
532 B
Handlebars
13 lines
532 B
Handlebars
{{#if postStream.summary}}
|
|
<p>{{{i18n 'summary.enabled_description'}}}</p>
|
|
<button class='btn btn-primary' {{action "toggleSummary"}}>{{i18n 'summary.disable'}}</button>
|
|
{{else}}
|
|
{{#if topic.estimatedReadingTime}}
|
|
<p>{{{i18n 'summary.description_time' count="topic.posts_count" readingTime="topic.estimatedReadingTime"}}}</p>
|
|
{{else}}
|
|
<p>{{{i18n 'summary.description' count="topic.posts_count"}}}</p>
|
|
{{/if}}
|
|
|
|
<button class='btn btn-primary' {{action "toggleSummary"}}>{{i18n 'summary.enable'}}</button>
|
|
{{/if}}
|