mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 22:26:29 +08:00
28 lines
822 B
Handlebars
28 lines
822 B
Handlebars
{{#if this.appendReason}}
|
|
<p class="reason">
|
|
<TopicNotificationsOptions
|
|
@value={{this.notificationLevel}}
|
|
@topic={{this.topic}}
|
|
@onChange={{action "changeTopicNotificationLevel"}}
|
|
@options={{hash
|
|
icon=this.icon
|
|
showFullTitle=this.showFullTitle
|
|
showCaret=this.showCaret
|
|
headerAriaLabel=(i18n "topic.notifications.title")
|
|
}}
|
|
/>
|
|
<span class="text">{{html-safe this.notificationReasonText}}</span>
|
|
</p>
|
|
{{else}}
|
|
<TopicNotificationsOptions
|
|
@value={{this.notificationLevel}}
|
|
@topic={{this.topic}}
|
|
@onChange={{action "changeTopicNotificationLevel"}}
|
|
@options={{hash
|
|
icon=this.icon
|
|
showFullTitle=this.showFullTitle
|
|
showCaret=this.showCaret
|
|
headerAriaLabel=(i18n "topic.notifications.title")
|
|
}}
|
|
/>
|
|
{{/if}} |