forked from pkp/pkp-lib
-
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.
Closes pkp#4834 Fixes after the code review.
- Loading branch information
1 parent
90f1771
commit 4385384
Showing
4 changed files
with
32 additions
and
25 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
21 changes: 21 additions & 0 deletions
21
templates/controllers/modals/editorDecision/form/bccReviewers.tpl
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{** | ||
* templates/controllers/modals/editorDecision/form/bccReviewers.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. | ||
* | ||
* Checkboxes to define which reviewer should receive a bcc copy of the message. | ||
* | ||
*} | ||
|
||
{if count($reviewers)} | ||
{fbvFormSection title="submission.comments.sendToReviewers"} | ||
<span class="description">{translate key="submission.comments.sendCopyToReviewers"}</span> | ||
<ul class="checkbox_and_radiobutton"> | ||
{foreach from=$reviewers item="name" key="id"} | ||
{fbvElement type="checkbox" id="bccReviewers[]" value=$id checked=in_array($id, $selected) label=$name translate=false} | ||
{/foreach} | ||
</ul> | ||
{/fbvFormSection} | ||
{/if} |
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