File "editComment.tpl"
Full path: /home/apeolorg/public_html/old/templates/submission/comment/editComment.tpl
File
size: 2.12 B
MIME-type: text/html
Charset: utf-8
Download Open Edit Advanced Editor &nnbsp; Back
{**
* templates/submission/comment/editComment.tpl
*
* Copyright (c) 2013-2016 Simon Fraser University Library
* Copyright (c) 2003-2016 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* Form to edit comments.
*
*}
{strip}
{assign var="pageTitle" value="submission.comments.editComment"}
{include file="submission/comment/header.tpl"}
{/strip}
<form method="post" action="{url op="saveComment" path=$commentId}">
{if $hiddenFormParams}
{foreach from=$hiddenFormParams item=hiddenFormParam key=key}
<input type="hidden" name="{$key|escape}" value="{$hiddenFormParam|escape}" />
{/foreach}
{/if}
{if $isPeerReviewComment}
<input type="hidden" name="viewable" value="{$viewable|escape}" />
{/if}
<div id="new">
{include file="common/formErrors.tpl"}
<table class="data">
<tr valign="top">
<td width="20%" class="label">{fieldLabel name="commentTitle" key="submission.comments.subject"}</td>
<td width="80%" class="value"><input type="text" id="commentTitle" name="commentTitle" value="{$commentTitle|escape}" size="50" maxlength="255" class="textField" /></td>
</tr>
<tr valign="top">
<td class="label">{fieldLabel name="comments" key="submission.comments.comments" required="true"}</td>
<td class="value"><textarea name="comments" id="comments" rows="15" cols="50" class="textArea">{$comments}</textarea></td>
</tr>
{if $isPeerReviewComment}
<tr valign="top">
<td> </td>
<td class="value">
<input type="checkbox" name="viewable" id="viewable" value="1"{if $viewable} checked="checked"{/if} />
<label for="viewable">{translate key="submission.comments.viewableDescription"}</label>
</td>
</tr>
{/if}
</table>
<p><input type="submit" value="{translate key="common.save"}" class="button defaultButton" /> {if !$isPeerReviewComment}<input type="submit" name="saveAndEmail" value="{translate key="common.saveAndEmail"}" class="button" /> {/if}<input type="button" value="{translate key="common.cancel"}" class="button" onclick="history.go(-1);" /></p>
<p><span class="formRequired">{translate key="common.requiredField"}</span></p>
</div>
</form>
{include file="submission/comment/footer.tpl"}