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