mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 15:48:43 -05:00
27 lines
1,014 B
Handlebars
27 lines
1,014 B
Handlebars
<p>{{i18n 'admin.email.preview_digest_desc'}}</p>
|
|
|
|
<div class='admin-controls'>
|
|
<div class='span7 controls'>
|
|
<label for='last-seen'>{{i18n 'admin.email.last_seen_user'}}</label>
|
|
{{date-picker-past value=lastSeen id="last-seen"}}
|
|
<label>{{i18n 'admin.email.user'}}:</label>
|
|
{{user-selector single="true" usernames=username}}
|
|
<button class='btn' {{action "refresh"}}>{{i18n 'admin.email.refresh'}}</button>
|
|
<div class="toggle">
|
|
<label>{{i18n 'admin.email.format'}}</label>
|
|
{{#if showHtml}}
|
|
<span>{{i18n 'admin.email.html'}}</span> | <a href {{action "toggleShowHtml"}}>{{i18n 'admin.email.text'}}</a>
|
|
{{else}}
|
|
<a href {{action "toggleShowHtml"}}>{{i18n 'admin.email.html'}}</a> | <span>{{i18n 'admin.email.text'}}</span>
|
|
{{/if}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{{#conditional-loading-spinner condition=loading}}
|
|
{{#if showHtml}}
|
|
{{{model.html_content}}}
|
|
{{else}}
|
|
<pre>{{{model.text_content}}}</pre>
|
|
{{/if}}
|
|
{{/conditional-loading-spinner}}
|