[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
14082024
/
Data
/
htdocs
/
htdocs
/
ojs
/
248
/
templates
/
submission
/
comment
/
[
Home
]
File: editorDecisionEmail.tpl
{** * templates/submission/comment/editorDecisionEmail.tpl * * Copyright (c) 2013-2019 Simon Fraser University * Copyright (c) 2003-2019 John Willinsky * Distributed under the GNU GPL v2. For full terms see the file docs/COPYING. * * Editor Decision email template form * *} {strip} {assign var="pageTitle" value="email.compose"} {assign var="pageCrumbTitle" value="email.email"} {include file="common/header.tpl"} {/strip} <script type="text/javascript"> {literal} <!-- function deleteAttachment(fileId) { document.getElementById('emailForm').deleteAttachment.value = fileId; document.getElementById('emailForm').submit(); } // --> {/literal} </script> <div id="editorDecisionEmail"> <form method="post" id="emailForm" name="emailForm" action="{$formActionUrl}"{if $attachmentsEnabled} enctype="multipart/form-data"{/if}> <input type="hidden" name="continued" value="1"/> {if $hiddenFormParams} {foreach from=$hiddenFormParams item=hiddenFormParam key=key} <input type="hidden" name="{$key|escape}" value="{$hiddenFormParam|escape}" /> {/foreach} {/if} {if $attachmentsEnabled} <input type="hidden" name="deleteAttachment" value="" /> {foreach from=$persistAttachments item=temporaryFile} <input type="hidden" name="persistAttachments[]" value="{$temporaryFile->getId()}" /> {/foreach} {/if} {include file="common/formErrors.tpl"} {foreach from=$errorMessages item=message} {if !$notFirstMessage} {assign var=notFirstMessage value=1} <h4>{translate key="form.errorsOccurred"}</h4> <ul class="plain"> {/if} {if $message.type == MAIL_ERROR_INVALID_EMAIL} {translate|assign:"message" key="email.invalid" email=$message.address} <li>{$message|escape}</li> {/if} {/foreach} {if $notFirstMessage} </ul> <br /> {/if} <table class="data" width="100%"> {if $addressFieldsEnabled} <tr valign="top"> <td class="label" width="20%">{fieldLabel name="to" key="email.to"}</td> <td width="80%" class="value"> {foreach from=$to item=toAddress} <input type="text" name="to[]" id="to" value="{if $toAddress.name != ''}{$toAddress.name|escape} <{$toAddress.email|escape}>{else}{$toAddress.email|escape}{/if}" size="40" maxlength="120" class="textField" /><br /> {foreachelse} <input type="text" name="to[]" id="to" size="40" maxlength="120" class="textField" /> {/foreach} {if $blankTo} <input type="text" name="to[]" id="to" size="40" maxlength="120" class="textField" /> {/if} </td> </tr> <tr valign="top"> <td class="label">{fieldLabel name="cc" key="email.cc"}</td> <td class="value"> {foreach from=$cc item=ccAddress} <input type="text" name="cc[]" id="cc" value="{if $ccAddress.name != ''}{$ccAddress.name|escape} <{$ccAddress.email|escape}>{else}{$ccAddress.email|escape}{/if}" size="40" maxlength="120" class="textField" /><br /> {foreachelse} <input type="text" name="cc[]" id="cc" size="40" maxlength="120" class="textField" /> {/foreach} {if $blankCc} <input type="text" name="cc[]" id="cc" size="40" maxlength="120" class="textField" /> {/if} </td> </tr> <tr valign="top"> <td class="label">{fieldLabel name="bcc" key="email.bcc"}</td> <td class="value"> {foreach from=$bcc item=bccAddress} <input type="text" name="bcc[]" id="bcc" value="{if $bccAddress.name != ''}{$bccAddress.name|escape} <{$bccAddress.email|escape}>{else}{$bccAddress.email|escape}{/if}" size="40" maxlength="120" class="textField" /><br /> {foreachelse} <input type="text" name="bcc[]" id="bcc" size="40" maxlength="120" class="textField" /> {/foreach} {if $blankBcc} <input type="text" name="bcc[]" id="bcc" size="40" maxlength="120" class="textField" /> {/if} </td> </tr> <tr valign="top"> <td></td> <td class="value"> <input type="submit" name="blankTo" class="button" value="{translate key="email.addToRecipient"}"/> <input type="submit" name="blankCc" class="button" value="{translate key="email.addCcRecipient"}"/> <input type="submit" name="blankBcc" class="button" value="{translate key="email.addBccRecipient"}"/> {if $senderEmail} <br /> <input type="checkbox" name="bccSender" id="bccSender" value="1"{if $bccSender} checked{/if} /> <label for="bccSender">{translate key="email.bccSender" address=$senderEmail|escape}</label> {/if} </td> </tr> {/if}{* addressFieldsEnabled *} {if $attachmentsEnabled} <tr valign="top"> <td colspan="2"> </td> </tr> <tr valign="top"> <td class="label">{translate key="email.attachments"}</td> <td class="value"> {assign var=attachmentNum value=1} {foreach from=$persistAttachments item=temporaryFile} {$attachmentNum|escape}. {$temporaryFile->getOriginalFileName()|escape} ({$temporaryFile->getNiceFileSize()}) <a href="javascript:deleteAttachment({$temporaryFile->getId()})" class="action">{translate key="common.delete"}</a> <br /> {assign var=attachmentNum value=$attachmentNum+1} {/foreach} {if $attachmentNum != 1}<br />{/if} <input type="file" name="newAttachment" class="uploadField" /> <input name="addAttachment" type="submit" class="button" value="{translate key="common.upload"}" /> </td> </tr> {/if} {if $isAnEditor} <tr valign="top"> <td colspan="2"> </td> </tr> <tr valign="top"> <td class="label"> </td> <td class="value"> <input type="submit" name="importPeerReviews" class="button defaultButton" value="{translate key="submission.comments.importPeerReviews"}"/> </td> </tr> {/if} <tr valign="top"> <td colspan="2"> </td> </tr> <tr valign="top"> <td class="label">{translate key="email.from"}</td> <td class="value">{$from|escape}</td> </tr> <tr valign="top"> <td width="20%" class="label">{fieldLabel name="subject" key="email.subject"}</td> <td width="80%" class="value"><input type="text" id="subject" name="subject" value="{$subject|escape}" size="60" maxlength="90" class="textField" /></td> </tr> <tr valign="top"> <td class="label">{fieldLabel name="body" key="email.body"}</td> <td class="value"><textarea name="body" cols="60" rows="15" class="textArea">{$body|escape}</textarea></td> </tr> {if $isAnEditor} <td class="label"> </td> <td class="value"><input type="checkbox" name="blindCcReviewers" value="1" id="blindCcReviewers"/> <label for="blindCcReviewers">{translate key="submission.comments.blindCcReviewers"}</label></td> {/if} </table> <p><input name="send" type="submit" value="{translate key="email.send"}" class="button defaultButton" /> <input type="button" value="{translate key="common.cancel"}" class="button" onclick="history.go(-1)" />{if !$disableSkipButton} <input name="send[skip]" type="submit" value="{translate key="email.skip"}" class="button" />{/if}</p> </form> </div> {include file="common/footer.tpl"}