KONTOLODON
/
var
/
www
/
old-ojs-3.3.0-11
/
lib
/
pkp
/
templates
/
controllers
/
grid
/
queries
/
form
/
Nama File / Folder
Size
Action
queryForm.tpl
2.166KB
Hapus
Edit
Rename
queryNoteForm.tpl
1.365KB
Hapus
Edit
Rename
{** * templates/controllers/grid/queries/form/queryForm.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 Query grid form * *} {if !count($allParticipants)} {translate key="submission.query.noParticipantOptions"} {else} <script> // Attach the handler. $(function() {ldelim} $('#queryForm').pkpHandler( '$.pkp.controllers.form.CancelActionAjaxFormHandler', {ldelim} cancelUrl: {if $isNew}'{url|escape:javascript op="deleteQuery" queryId=$queryId csrfToken=$csrfToken params=$actionArgs escape=false}'{else}null{/if} {rdelim} ); {rdelim}); </script> <form class="pkp_form" id="queryForm" method="post" action="{url op="updateQuery" queryId=$queryId params=$actionArgs wasNew=$isNew}"> {csrf} {include file="controllers/notification/inPlaceNotification.tpl" notificationId="queryFormNotification"} {fbvFormSection list=true title="editor.submission.stageParticipants"} {foreach from=$allParticipants item="participant" key="id"} {fbvElement type="checkbox" id="users[]" value=$id checked=in_array($id, $assignedParticipants) label=$participant|escape translate=false} {/foreach} {/fbvFormSection} {fbvFormArea id="queryContentsArea"} {fbvFormSection title="common.subject" for="subject" required="true"} {fbvElement type="text" id="subject" value=$subject required="true"} {/fbvFormSection} {fbvFormSection title="stageParticipants.notify.message" for="comment" required="true"} {fbvElement type="textarea" id="comment" rich=true value=$comment required="true"} {/fbvFormSection} {/fbvFormArea} {fbvFormArea id="queryNoteFilesArea"} {capture assign=queryNoteFilesGridUrl}{url router=$smarty.const.ROUTE_COMPONENT component="grid.files.query.QueryNoteFilesGridHandler" op="fetchGrid" params=$actionArgs queryId=$queryId noteId=$noteId escape=false}{/capture} {load_url_in_div id="queryNoteFilesGrid" url=$queryNoteFilesGridUrl} {/fbvFormArea} <p><span class="formRequired">{translate key="common.requiredField"}</span></p> {fbvFormButtons id="addQueryButton"} </form> {/if}