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/topic_extra_info.js.handlebars
2013-02-20 16:11:56 +11:00

20 lines
573 B
Handlebars

{{#if view.showFavoriteButton}}
<a {{bindAttr class=":star view.topic.starred:starred"}} {{action toggleStar target="controller"}} href='#' title="{{i18n favorite.help}}"></a>
{{/if}}
<h1>
{{#if view.topic.title}}
{{view Discourse.TopicStatusView topicBinding="view.topic"}}
<a class='topic-link' href='{{unbound view.topic.url}}'>{{view.topic.title}}</a>
{{else}}
{{#if view.topic.missing}}
{{i18n topic.not_found.title}}
{{else}}
{{i18n topic.loading}}
{{/if}}
{{/if}}
{{#if view.topic.category}}
{{categoryLink view.topic.category}}
{{/if}}
</h1>