%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/JberJournal/templates/submission/suppFile/ |
Upload File : |
{**
* templates/submission/suppFile/suppFileView.tpl
*
* Copyright (c) 2003-2012 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* Read-only view of supplementary file information.
*
*}
{strip}
{assign var="pageTitle" value="article.suppFile"}
{assign var="pageCrumbTitle" value="submission.supplementaryFiles"}
{include file="common/header.tpl"}
{/strip}
<div id="supplementaryFileData">
<h3>{translate key="author.submit.supplementaryFileData"}</h3>
<table width="100%" class="data">
<tr valign="top">
<td width="20%" class="label">{translate key="common.title"}</td>
<td width="80%" class="value">{$suppFile->getSuppFileTitle()|escape|default:"—"}</td>
</tr>
<tr valign="top">
<td class="label">{translate key="author.submit.suppFile.createrOrOwner"}</td>
<td class="value">{$suppFile->getSuppFileCreator()|escape|default:"—"}</td>
</tr>
<tr valign="top">
<td class="label">{translate key="common.subject"}</td>
<td class="value">{$suppFile->getSuppFileSubject()|escape|default:"—"}</td>
</tr>
<tr valign="top">
<td class="label">{translate key="common.type"}</td>
<td class="value">{$suppFile->getType()|escape|default:$suppFile->getSuppFileTypeOther()|default:"—"}</td>
</tr>
<tr valign="top">
<td class="label">{translate key="author.submit.suppFile.briefDescription"}</td>
<td class="value">{$suppFile->getSuppFileDescription()|escape|nl2br|default:"—"}</td>
</tr>
<tr valign="top">
<td class="label">{translate key="common.publisher"}</td>
<td class="value">{$suppFile->getSuppFilePublisher()|escape|default:"—"}</td>
</tr>
<tr valign="top">
<td class="label">{translate key="author.submit.suppFile.contributorOrSponsor"}</td>
<td class="value">{$suppFile->getSuppFileSponsor()|escape|default:"—"}</td>
</tr>
<tr valign="top">
<td class="label">{translate key="common.date"}</td>
<td class="value">{$suppFile->getDateCreated()|default:"—"}</td>
</tr>
<tr valign="top">
<td class="label">{translate key="common.source"}</td>
<td class="value">{$suppFile->getSuppFileSource()|escape|default:"—"}</td>
</tr>
<tr valign="top">
<td class="label">{translate key="common.language"}</td>
<td class="value">{$suppFile->getLanguage()|escape|default:"—"}</td>
</tr>
</table>
</div>
<div class="separator"></div>
<div id="supplementaryFileUpload">
<h3>{translate key="author.submit.supplementaryFileUpload"}</h3>
<table width="100%" class="data">
{if $suppFile}
<tr valign="top">
<td width="20%" class="label">{translate key="common.fileName"}</td>
<td width="80%" class="value"><a href="{url op="downloadFile" path=$articleId|to_array:$suppFile->getFileId()}">{$suppFile->getFileName()|escape}</a></td>
</tr>
<tr valign="top">
<td class="label">{translate key="common.originalFileName"}</td>
<td class="value">{$suppFile->getOriginalFileName()|escape}</td>
</tr>
<tr valign="top">
<td class="label">{translate key="common.fileSize"}</td>
<td class="value">{$suppFile->getNiceFileSize()}</td>
</tr>
<tr valign="top">
<td class="infoLabel">{translate key="common.dateUploaded"}</td>
<td class="value">{$suppFile->getDateUploaded()|date_format:$datetimeFormatShort}</td>
</tr>
</table>
{else}
<tr valign="top">
<td colspan="2" class="noResults">{translate key="author.submit.suppFile.noFile"}</td>
</tr>
{/if}
</table>
</div>
{include file="common/footer.tpl"}