| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Old Sites/Civilgeo/ojs/templates/proofreader/submission/ |
Upload File : |
{**
* layout.tpl
*
* Copyright (c) 2003-2012 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* Subtemplate defining the layout editing table.
*
* $Id$
*}
{assign var=layoutSignoff value=$submission->getSignoff('SIGNOFF_LAYOUT')}
{assign var=layoutEditor value=$submission->getUserBySignoffType('SIGNOFF_LAYOUT')}
<div id="layout">
<h3>{translate key="submission.layout"}</h3>
{if $useLayoutEditors}
<div id="layoutEditors">
<table class="data" width="100%">
<tr>
<td class="label" width="20%">{translate key="user.role.layoutEditor"}</td>
<td class="value" width="80%">{if $layoutSignoff->getUserId()}{$layoutEditor->getFullName()|escape}{else}{translate key="common.none"}{/if}</td>
</tr>
</table>
</div>
{/if}
<table width="100%" class="info">
<tr>
<td width="40%" colspan="2">{translate key="submission.layout.galleyFormat"}</td>
<td width="60%" class="heading">{translate key="common.file"}</td>
</tr>
{foreach name=galleys from=$submission->getGalleys() item=galley}
<tr>
<td width="5%">{$smarty.foreach.galleys.iteration}.</td>
<td width="35%">{$galley->getGalleyLabel()|escape} <a href="{url op="proofGalley" path=$submission->getArticleId()|to_array:$galley->getId()}" class="action">{translate key="submission.layout.viewProof"}</td>
<td><a href="{url op="downloadFile" path=$submission->getArticleId()|to_array:$galley->getFileId()}" class="file">{$galley->getFileName()|escape}</a> {$galley->getDateModified()|date_format:$dateFormatShort}</td>
</tr>
{foreachelse}
<tr>
<td colspan="3" class="nodata">{translate key="common.none"}</td>
</tr>
{/foreach}
<tr>
<td colspan="3" class="separator"> </td>
</tr>
<tr>
<td colspan="2">{translate key="submission.supplementaryFiles"}</td>
<td class="heading">{translate key="common.file"}</td>
</tr>
{foreach name=suppFiles from=$submission->getSuppFiles() item=suppFile}
<tr>
<td width="5%">{$smarty.foreach.suppFiles.iteration}.</td>
<td width="35%">{$suppFile->getSuppFileTitle()|escape}</td>
<td><a href="{url op="downloadFile" path=$submission->getArticleId()|to_array:$suppFile->getFileId()}" class="file">{$suppFile->getFileName()|escape}</a> {$suppFile->getDateModified()|date_format:$dateFormatShort}</td>
</tr>
{foreachelse}
<tr>
<td colspan="3" class="nodata">{translate key="common.none"}</td>
</tr>
{/foreach}
<tr>
<td colspan="3" class="separator"> </td>
</tr>
</table>
<div id="layoutComments">
{translate key="submission.layout.layoutComments"}
{if $submission->getMostRecentLayoutComment()}
{assign var="comment" value=$submission->getMostRecentLayoutComment()}
<a href="javascript:openComments('{url op="viewLayoutComments" path=$submission->getArticleId() anchor=$comment->getId()}');" class="icon">{icon name="comment"}</a>{$comment->getDatePosted()|date_format:$dateFormatShort}
{else}
<a href="javascript:openComments('{url op="viewLayoutComments" path=$submission->getArticleId()}');" class="icon">{icon name="comment"}</a>{translate key="common.noComments"}
{/if}
</div>
</div>