72 lines
3.7 KiB
Smarty
72 lines
3.7 KiB
Smarty
{**
|
|
* templates/reviewer/review/step3.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.
|
|
*
|
|
* Show the step 3 review page
|
|
*}
|
|
<script type="text/javascript">
|
|
$(function() {ldelim}
|
|
// Attach the form handler.
|
|
$('#reviewStep3Form').pkpHandler(
|
|
'$.pkp.controllers.form.reviewer.ReviewerReviewStep3FormHandler'
|
|
);
|
|
{rdelim});
|
|
</script>
|
|
|
|
<form class="pkp_form" id="reviewStep3Form" method="post" action="{url op="saveStep" path=$submission->getId() step="3"}">
|
|
<input type="hidden" name="isSave" />{* @see ReviewerReviewStep3FormHandler.js *}
|
|
{csrf}
|
|
{include file="controllers/notification/inPlaceNotification.tpl" notificationId="reviewStep3FormNotification"}
|
|
|
|
{fbvFormArea id="reviewStep3"}
|
|
|
|
{capture assign="reviewFilesGridUrl"}{url router=\PKP\core\PKPApplication::ROUTE_COMPONENT component="grid.files.review.ReviewerReviewFilesGridHandler" op="fetchGrid" submissionId=$submission->getId() stageId=$reviewAssignment->getStageId() reviewRoundId=$reviewRoundId reviewAssignmentId=$reviewAssignment->getId() escape=false}{/capture}
|
|
{load_url_in_div id="reviewFilesStep3" url=$reviewFilesGridUrl}
|
|
|
|
{if $viewGuidelinesAction}
|
|
{fbvFormSection title="reviewer.submission.reviewerGuidelines"}
|
|
<div id="viewGuidelines">
|
|
{include file="linkAction/linkAction.tpl" action=$viewGuidelinesAction contextId="viewGuidelines"}
|
|
</div>
|
|
{/fbvFormSection}
|
|
{/if}
|
|
|
|
{if $reviewForm}
|
|
{fbvFormSection}
|
|
<h3>{$reviewForm->getLocalizedTitle()|escape}</h3>
|
|
<p>{$reviewForm->getLocalizedDescription()}</p>
|
|
|
|
{include file="reviewer/review/reviewFormResponse.tpl"}
|
|
{/fbvFormSection}
|
|
{else}
|
|
{fbvFormSection label="submission.review" description="reviewer.submission.reviewDescription"}
|
|
{fbvFormSection label="submission.comments.canShareWithAuthor"}
|
|
{fbvElement type="textarea" id="comments" name="comments" value=$comments readonly=$reviewIsClosed rich=true}
|
|
{/fbvFormSection}
|
|
{fbvFormSection label="submission.comments.cannotShareWithAuthor"}
|
|
{fbvElement type="textarea" id="commentsPrivate" name="commentsPrivate" value=$commentsPrivate readonly=$reviewIsClosed rich=true}
|
|
{/fbvFormSection}
|
|
{/fbvFormSection}
|
|
{/if}
|
|
|
|
{fbvFormSection label="common.upload" description="reviewer.submission.uploadDescription"}
|
|
{capture assign="reviewAttachmentsGridUrl"}{url router=\PKP\core\PKPApplication::ROUTE_COMPONENT component="grid.files.attachment.ReviewerReviewAttachmentsGridHandler" op="fetchGrid" assocType=$smarty.const.ASSOC_TYPE_REVIEW_ASSIGNMENT assocId=$reviewAssignment->getId() submissionId=$submission->getId() stageId=$reviewAssignment->getStageId() reviewIsClosed=$reviewIsClosed escape=false}{/capture}
|
|
{load_url_in_div id="reviewAttachmentsGridContainer" url=$reviewAttachmentsGridUrl}
|
|
{/fbvFormSection}
|
|
|
|
<!-- Display queries grid -->
|
|
{capture assign="queriesGridUrl"}{url router=\PKP\core\PKPApplication::ROUTE_COMPONENT component="grid.queries.QueriesGridHandler" op="fetchGrid" submissionId=$submission->getId() stageId=$smarty.const.WORKFLOW_STAGE_ID_EXTERNAL_REVIEW escape=false}{/capture}
|
|
{load_url_in_div id="queriesGrid" url=$queriesGridUrl}
|
|
|
|
{$additionalFormFields}
|
|
|
|
{capture assign="cancelUrl"}{url page="reviewer" op="submission" path=$submission->getId() step=2 escape=false}{/capture}
|
|
{fbvFormButtons submitText="reviewer.submission.submitReview" confirmSubmit="reviewer.confirmSubmit" saveText="reviewer.submission.saveReviewForLater" cancelText="navigation.goBack" cancelUrl=$cancelUrl cancelUrlTarget="_self" submitDisabled=$reviewIsClosed}
|
|
{/fbvFormArea}
|
|
|
|
<p><span class="formRequired">{translate key="common.requiredField"}</span></p>
|
|
</form>
|