139 lines
4.4 KiB
Handlebars
139 lines
4.4 KiB
Handlebars
{{#if postStream.loaded}}
|
|
|
|
{{#if postStream.firstPostLoaded}}
|
|
<div id='topic-title'>
|
|
<div class='container'>
|
|
<div class='inner'>
|
|
|
|
{{#if showFavoriteButton}}
|
|
<a {{bindAttr class=":star starred:starred"}} {{action toggleStar}} href='#' {{bindAttr title="favoriteTooltip"}}></a>
|
|
{{/if}}
|
|
|
|
{{#if editingTopic}}
|
|
{{categoryChooser valueAttribute="id" value=newCategoryId source=category_id}}
|
|
{{textField id='edit-title' value=newTitle}}
|
|
|
|
<button class='btn btn-primary btn-small' {{action finishedEditingTopic}}><i class='icon-ok'></i></button>
|
|
<button class='btn btn-small' {{action cancelEditingTopic}}><i class='icon-remove'></i></button>
|
|
{{else}}
|
|
<h1>
|
|
{{boundCategoryLink category}}
|
|
{{#if details.loaded}}
|
|
{{topicStatus topic=model}}
|
|
<a href='{{unbound url}}'>
|
|
{{#if topicSaving}}
|
|
{{fancy_title}}
|
|
{{else}}
|
|
{{{fancy_title}}}
|
|
{{/if}}
|
|
</a>
|
|
{{/if}}
|
|
|
|
|
|
{{#if details.can_edit}}
|
|
<a href='#' {{action editTopic}} class='edit-topic' title='{{i18n edit}}'><i class="icon-pencil"></i></a>
|
|
{{/if}}
|
|
</h1>
|
|
{{/if}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{/if}}
|
|
|
|
<div class="container posts">
|
|
|
|
{{view Discourse.SelectedPostsView}}
|
|
<div class="row">
|
|
<section class="topic-area" id='topic' data-topic-id='{{unbound id}}'>
|
|
<div class='posts-wrapper'>
|
|
<div id='topic-progress-wrapper' {{bindAttr class="dockedCounter:docked"}}>
|
|
<nav id='topic-progress' title="{{i18n topic.progress.title}}" {{bindAttr class="hideProgress:hidden"}}>
|
|
<button id='jump-top' title="{{i18n topic.progress.jump_top}}" {{bindAttr disabled="jumpTopDisabled"}} {{action jumpTop}}><i class="icon-circle-arrow-up"></i></button>
|
|
<div class='nums'>
|
|
<h4 title="{{i18n topic.progress.current}}">{{progressPosition}}</h4> <span>{{i18n of_value}}</span> <h4>{{postStream.filteredPostsCount}}</h4>
|
|
</div>
|
|
<button id='jump-bottom' title="{{i18n topic.progress.jump_bottom}}" {{bindAttr disabled="jumpBottomDisabled"}} {{action jumpBottom}}><i class="icon-circle-arrow-down"></i></button>
|
|
<div class='bg'> </div>
|
|
</nav>
|
|
</div>
|
|
|
|
{{#if postStream.loadingAbove}}
|
|
<div class='spinner'>{{i18n loading}}</div>
|
|
{{/if}}
|
|
|
|
{{#unless postStream.loadingFilter}}
|
|
{{collection itemViewClass="Discourse.PostView" contentBinding="postStream.posts" topicViewBinding="view"}}
|
|
{{/unless}}
|
|
|
|
{{#if postStream.loadingBelow}}
|
|
<div class='spinner'>{{i18n loading}}</div>
|
|
{{/if}}
|
|
</div>
|
|
<div id='topic-bottom'></div>
|
|
|
|
{{#if postStream.loadingFilter}}
|
|
<div class='spinner small'>{{i18n loading}}</div>
|
|
{{else}}
|
|
{{#if postStream.lastPostLoaded}}
|
|
|
|
{{view Discourse.TopicClosingView topicBinding="model"}}
|
|
{{view Discourse.TopicFooterButtonsView topicBinding="model"}}
|
|
|
|
{{#if details.suggested_topics.length}}
|
|
<div id='suggested-topics'>
|
|
<h3>{{i18n suggested_topics.title}}</h3>
|
|
<div class='topics'>
|
|
{{basicTopicList topics=details.suggested_topics}}
|
|
</div>
|
|
<br/>
|
|
<h3>{{{view.browseMoreMessage}}}</h3>
|
|
</div>
|
|
{{/if}}
|
|
{{/if}}
|
|
{{/if}}
|
|
|
|
|
|
</section>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{else}}
|
|
{{#if hasError}}
|
|
<div class='container'>
|
|
{{#if errorBodyHtml}}
|
|
{{{errorBodyHtml}}}
|
|
{{/if}}
|
|
|
|
{{#if message}}
|
|
<div class="message">
|
|
<h2>{{message}}</h2>
|
|
</div>
|
|
{{/if}}
|
|
|
|
</div>
|
|
{{else}}
|
|
<div class='container'>
|
|
<div class='spinner'>{{i18n loading}}</div>
|
|
</div>
|
|
{{/if}}
|
|
{{/if}}
|
|
|
|
|
|
<div id='topic-filter' {{bindAttr class="postStream.hasNoFilters:hidden"}}>
|
|
{{postStream.filterDesc}}
|
|
<a href='#' {{action cancelFilter target="postStream"}}>{{i18n topic.filters.cancel}}</a>
|
|
</div>
|
|
|
|
{{render share}}
|
|
{{render posterExpansion}}
|
|
|
|
{{#if currentUser.enable_quoting}}
|
|
{{render quoteButton}}
|
|
{{/if}}
|
|
|
|
{{#if currentUser.staff}}
|
|
{{render topicAdminMenu content}}
|
|
{{/if}}
|
|
|