2014-12-09 05:35:49 +08:00
|
|
|
<p>{{i18n 'admin.email.preview_digest_desc'}}</p>
|
2013-06-12 00:27:11 +08:00
|
|
|
|
2017-06-29 03:36:34 +08:00
|
|
|
<div class='admin-controls email-preview'>
|
2020-03-11 22:31:29 +08:00
|
|
|
<div class='controls'>
|
2014-12-09 05:35:49 +08:00
|
|
|
<label for='last-seen'>{{i18n 'admin.email.last_seen_user'}}</label>
|
2016-04-15 23:58:32 +08:00
|
|
|
{{date-picker-past value=lastSeen id="last-seen"}}
|
2015-10-31 02:05:54 +08:00
|
|
|
<label>{{i18n 'admin.email.user'}}:</label>
|
2020-02-12 03:20:12 +08:00
|
|
|
{{user-selector single="true" usernames=username canReceiveUpdates=true}}
|
2019-11-04 18:23:54 +08:00
|
|
|
{{d-button
|
|
|
|
class="btn-primary digest-refresh-button"
|
|
|
|
action=(action "refresh")
|
|
|
|
label="admin.email.refresh"}}
|
2015-08-16 17:51:31 +08:00
|
|
|
<div class="toggle">
|
|
|
|
<label>{{i18n 'admin.email.format'}}</label>
|
|
|
|
{{#if showHtml}}
|
2019-08-01 14:37:42 +08:00
|
|
|
<span>{{i18n 'admin.email.html'}}</span> | <a href
|
|
|
|
{{action "toggleShowHtml"}}>{{i18n 'admin.email.text'}}</a>
|
2015-08-16 17:51:31 +08:00
|
|
|
{{else}}
|
2019-08-01 14:37:42 +08:00
|
|
|
<a href {{action "toggleShowHtml"}}>{{i18n 'admin.email.html'}}</a> |
|
|
|
|
<span>{{i18n 'admin.email.text'}}</span>
|
2015-08-16 17:51:31 +08:00
|
|
|
{{/if}}
|
|
|
|
</div>
|
2013-06-04 04:12:24 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2015-04-29 05:05:06 +08:00
|
|
|
{{#conditional-loading-spinner condition=loading}}
|
2016-11-24 06:46:57 +08:00
|
|
|
|
2019-08-01 14:37:42 +08:00
|
|
|
<div class="email-preview-digest">
|
|
|
|
{{#if showSendEmailForm}}
|
|
|
|
<div class="controls">
|
|
|
|
{{#if sendingEmail}}
|
|
|
|
{{i18n 'admin.email.sending_test'}}
|
|
|
|
{{else}}
|
|
|
|
<label>{{i18n 'admin.email.send_digest_label'}}</label>
|
|
|
|
{{text-field value=email placeholderKey="admin.email.test_email_address"}}
|
2019-11-04 18:23:54 +08:00
|
|
|
{{d-button
|
|
|
|
class="btn-default"
|
|
|
|
action=(action "sendEmail")
|
|
|
|
disabled=sendEmailDisabled
|
|
|
|
label="admin.email.send_digest"}}
|
2019-08-01 14:37:42 +08:00
|
|
|
{{#if sentEmail}}
|
|
|
|
<span class='result-message'>{{i18n 'admin.email.sent_test'}}</span>
|
|
|
|
{{/if}}
|
2016-11-24 06:46:57 +08:00
|
|
|
{{/if}}
|
2019-08-01 14:37:42 +08:00
|
|
|
</div>
|
|
|
|
{{/if}}
|
2016-11-24 06:46:57 +08:00
|
|
|
|
2019-08-01 14:37:42 +08:00
|
|
|
<div class="preview-output">
|
|
|
|
{{#if showHtml}}
|
|
|
|
{{#if htmlEmpty}}
|
|
|
|
<p>{{i18n 'admin.email.no_result'}}</p>
|
|
|
|
{{else}}
|
|
|
|
<iframe srcdoc={{model.html_content}} />
|
|
|
|
{{/if}}
|
2016-11-25 04:38:22 +08:00
|
|
|
{{else}}
|
2020-03-11 16:23:10 +08:00
|
|
|
<pre>{{html-safe model.text_content}}</pre>
|
2016-11-25 04:38:22 +08:00
|
|
|
{{/if}}
|
2019-08-01 14:37:42 +08:00
|
|
|
</div>
|
2016-11-25 04:38:22 +08:00
|
|
|
</div>
|
|
|
|
|
2019-11-04 18:23:54 +08:00
|
|
|
{{/conditional-loading-spinner}}
|