[ 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
/
author
/
submission
/
[
Home
]
File: editorDecision.tpl
{** * templates/author/submission/editorDecision.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. * * 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>