[ 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
/
submission
/
suppFile
/
[
Home
]
File: suppFileView.tpl
{** * templates/submission/suppFile/suppFileView.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. * * 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"}