FEATURE: clicking envelope takes you to inbox Suggested messages works somewhat like suggested topics. - New show up first (in either group inbox or inbox) - Then unread (in either group inbox or inbox) - Finally "related" which are messages with same participants as the current pm.
22 lines
658 B
Handlebars
22 lines
658 B
Handlebars
<div class="extra-info-wrapper">
|
|
<div {{bind-attr class=":extra-info needsSecondRow:two-rows"}}>
|
|
<div class="title-wrapper">
|
|
<h1>
|
|
{{#if showPrivateMessageGlyph}}
|
|
<a href='{{pmPath}}'>
|
|
<span class="private-message-glyph">{{fa-icon "envelope"}}</span>
|
|
</a>
|
|
{{/if}}
|
|
|
|
{{#if topic.details.loaded}}
|
|
{{topic-status topic=topic}}
|
|
<a class='topic-link' href='{{unbound topic.url}}' {{action "jumpToTopPost"}}>{{{topic.fancyTitle}}}</a>
|
|
{{/if}}
|
|
</h1>
|
|
{{#if topic.details.loaded}}
|
|
{{topic-category topic=topic}}
|
|
{{/if}}
|
|
</div>
|
|
</div>
|
|
</div>
|