This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/assets/javascripts/discourse/templates/components/toggle-summary.js.handlebars
2014-07-07 22:41:41 -07:00

13 lines
518 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}}