Files
CHIEFSOFT\ameye df3a033196 first commit
2024-06-08 17:09:23 -04:00

40 lines
1.7 KiB
Smarty

{**
* templates/controllers/grid/files/proof/manageProofFiles.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.
*
* Allows editor to add more files to the publication format
*}
<script>
$(function() {ldelim}
// Attach the form handler.
$('#manageProofFilesForm').pkpHandler('$.pkp.controllers.form.AjaxFormHandler');
{rdelim});
</script>
<form class="pkp_form" id="manageProofFilesForm" action="{url component="grid.files.proof.ManageProofFilesGridHandler" op="updateProofFiles" submissionId=$submissionId}" method="post">
<!-- Current proof files -->
<p>{translate key="editor.submission.proof.manageProofFilesDescription"}</p>
<div id="existingFilesContainer">
{csrf}
{fbvFormArea id="manageProofFiles"}
{fbvFormSection}
<input type="hidden" name="submissionId" value="{$submissionId|escape}" />
<input type="hidden" name="stageId" value="{$smarty.const.WORKFLOW_STAGE_ID_PRODUCTION}" />
<input type="hidden" name="representationId" value="{$representationId|escape}" />
{if $publicationId}
<input type="hidden" name="publicationId" value="{$publicationId|escape}">
{/if}
{capture assign=availableReviewFilesGridUrl}{url router=\PKP\core\PKPApplication::ROUTE_COMPONENT component="grid.files.proof.ManageProofFilesGridHandler" op="fetchGrid" submissionId=$submissionId publicationId=$publicationId representationId=$representationId escape=false}{/capture}
{load_url_in_div id="availableReviewFilesGrid" url=$availableReviewFilesGridUrl}
{/fbvFormSection}
{fbvFormButtons}
{/fbvFormArea}
</div>
</form>