forked from pkp/ojs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pkp/pkp-lib#1660 migration to import existing recommendations
- Loading branch information
1 parent
b13f6a8
commit 0abe490
Showing
3 changed files
with
41 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,25 @@ | ||
{** | ||
* templates/reviewer/review/reviewerRecommendations.tpl | ||
* | ||
* Copyright (c) 2014-2021 Simon Fraser University | ||
* Copyright (c) 2003-2021 John Willinsky | ||
* Copyright (c) 2014-2024 Simon Fraser University | ||
* Copyright (c) 2003-2024 John Willinsky | ||
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. | ||
* | ||
* Include reviewer recommendations for OJS review assignment responses. | ||
*} | ||
|
||
{fbvFormSection label="reviewer.article.recommendation" description=$description|default:"reviewer.article.selectRecommendation"} | ||
{fbvElement type="select" id="recommendation" from=$reviewerRecommendationOptions selected=$reviewAssignment->getRecommendation() size=$fbvStyles.size.MEDIUM required=$required|default:true disabled=$readOnly} | ||
{fbvFormSection | ||
label="reviewer.article.recommendation" | ||
description=$description|default:"reviewer.article.selectRecommendation" | ||
} | ||
{fbvElement | ||
type="select" | ||
id="recommendation" | ||
from=$reviewerRecommendationOptions | ||
selected=$reviewAssignment->getRecommendation() | ||
size=$fbvStyles.size.MEDIUM | ||
required=$required|default:true | ||
disabled=$readOnly | ||
translate=false | ||
} | ||
{/fbvFormSection} |