first commit
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
{**
|
||||
* templates/controllers/modals/documentLibrary/documentLibrary.tpl
|
||||
*
|
||||
* Copyright (c) 2014-2021 Simon Fraser University
|
||||
* Copyright (c) 2003-2021 John Willinsky
|
||||
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
|
||||
*
|
||||
* Document library
|
||||
*}
|
||||
|
||||
{help file="editorial-workflow" section="submission-library" class="pkp_help_modal"}
|
||||
|
||||
{capture assign=submissionLibraryGridUrl}{url submissionId=$submission->getId() router=\PKP\core\PKPApplication::ROUTE_COMPONENT component="grid.files.submissionDocuments.SubmissionDocumentsFilesGridHandler" op="fetchGrid" escape=false}{/capture}
|
||||
{load_url_in_div id="submissionLibraryGridContainer" url=$submissionLibraryGridUrl}
|
||||
@@ -0,0 +1,17 @@
|
||||
{**
|
||||
* controllers/modals/documentLibrary/publisherLibrary.tpl
|
||||
*
|
||||
* Copyright (c) 2014-2021 Simon Fraser University
|
||||
* Copyright (c) 2003-2021 John Willinsky
|
||||
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
|
||||
*
|
||||
* @brief Show a grid to manage files in the publisher library
|
||||
*
|
||||
* @uses $canEdit bool True if the current user can add/edit the files.
|
||||
*}
|
||||
|
||||
{* Help Link *}
|
||||
{help file="settings/workflow-settings" section="publisher" class="pkp_help_modal"}
|
||||
|
||||
{capture assign=libraryGridUrl}{url router=\PKP\core\PKPApplication::ROUTE_COMPONENT component="grid.settings.library.LibraryFileAdminGridHandler" op="fetchGrid" canEdit=$canEdit escape=false}{/capture}
|
||||
{load_url_in_div id="libraryGridDiv" url=$libraryGridUrl}
|
||||
@@ -0,0 +1,18 @@
|
||||
{**
|
||||
* templates/controllers/modals/publish/publish.tpl
|
||||
*
|
||||
* Copyright (c) 2014-2021 Simon Fraser University
|
||||
* Copyright (c) 2003-2021 John Willinsky
|
||||
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
|
||||
*
|
||||
* @brief Final publishing confirmation for a publication
|
||||
*}
|
||||
|
||||
|
||||
{assign var="uuid" value=""|uniqid|escape}
|
||||
<div id="publish-{$uuid}" class="pkpWorkflow__publishModal">
|
||||
<pkp-form v-bind="components.{$smarty.const.FORM_PUBLISH}" @set="set" />
|
||||
<script type="text/javascript">
|
||||
pkp.registry.init('publish-{$uuid}', 'Container', {$publishData|json_encode});
|
||||
</script>
|
||||
</div>
|
||||
@@ -0,0 +1,42 @@
|
||||
{**
|
||||
* lib/pkp/templates/controllers/modals/submission/viewSubmissionMetadata.tpl
|
||||
*
|
||||
* Copyright (c) 2014-2021 Simon Fraser University
|
||||
* Copyright (c) 2003-2021 John Willinsky
|
||||
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
|
||||
*
|
||||
* Display submission metadata.
|
||||
*}
|
||||
|
||||
<div id="viewSubmissionMetadata" class="">
|
||||
<h3>{$publication->getLocalizedFullTitle(null, 'html')|strip_unsafe_html}</h3>
|
||||
{if $authors}<h4>{$authors|escape}</h4>{/if}
|
||||
<div class="abstract">
|
||||
{$publication->getLocalizedData('abstract')|strip_unsafe_html}
|
||||
</div>
|
||||
{if $additionalMetadata || $dataAvailability}
|
||||
<table class="pkpTable">
|
||||
{foreach $additionalMetadata as $metadata}
|
||||
<tr>
|
||||
{foreach $metadata as $metadataItem}
|
||||
{if $metadataItem@iteration % 2 != 0}
|
||||
<th scope="row">{$metadataItem|escape}</th>
|
||||
{else}
|
||||
<td>{$metadataItem|escape}</td>
|
||||
{/if}
|
||||
{/foreach}
|
||||
</tr>
|
||||
{/foreach}
|
||||
{if $dataAvailability}
|
||||
<tr>
|
||||
<th scope="row">
|
||||
{translate key="submission.dataAvailability"}
|
||||
</th>
|
||||
<td>
|
||||
{$dataAvailability|strip_unsafe_html}
|
||||
</td>
|
||||
</tr>
|
||||
{/if}
|
||||
</table>
|
||||
{/if}
|
||||
</div>
|
||||
Reference in New Issue
Block a user