Show raw email in text box

This commit is contained in:
Arpit Jalan 2014-10-20 00:51:22 +05:30
parent 9eaabfb4e6
commit 7b81e79b12
2 changed files with 4 additions and 1 deletions

View File

@ -1,6 +1,6 @@
<div class="modal-body"> <div class="modal-body">
{{#if raw_email}} {{#if raw_email}}
<pre><code>{{raw_email}}</code></pre> <textarea class="raw-email-textarea">{{raw_email}}</textarea>
{{else}} {{else}}
{{i18n raw_email.not_available}} {{i18n raw_email.not_available}}
{{/if}} {{/if}}

View File

@ -117,6 +117,9 @@
.warning { .warning {
color: $danger !important; color: $danger !important;
} }
.raw-email-textarea {
height: 300px;
}
} }
.password-confirmation { .password-confirmation {
display: none; display: none;