| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Old Sites/Libteiser - Ojs/ojs/templates/copyeditor/ |
Upload File : |
{**
* completed.tpl
*
* Copyright (c) 2003-2008 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* Show copyeditor's submission archive.
*
* $Id: completed.tpl,v 1.29 2008/06/11 22:51:34 asmecher Exp $
*}
{if !$dateFrom}
{assign var="dateFrom" value="--"}
{/if}
{if !$dateTo}
{assign var="dateTo" value="--"}
{/if}
<form method="post" name="submit" action="{url op="index" path=$pageToDisplay}">
<select name="searchField" size="1" class="selectMenu">
{html_options_translate options=$fieldOptions selected=$searchField}
</select>
<select name="searchMatch" size="1" class="selectMenu">
<option value="contains"{if $searchMatch == 'contains'} selected="selected"{/if}>{translate key="form.contains"}</option>
<option value="is"{if $searchMatch == 'is'} selected="selected"{/if}>{translate key="form.is"}</option>
</select>
<input type="text" size="15" name="search" class="textField" value="{$search|escape}" />
<br/>
<select name="dateSearchField" size="1" class="selectMenu">
{html_options_translate options=$dateFieldOptions selected=$dateSearchField}
</select>
{translate key="common.between"}
{html_select_date prefix="dateFrom" time=$dateFrom all_extra="class=\"selectMenu\"" year_empty="" month_empty="" day_empty="" start_year="-5" end_year="+1"}
{translate key="common.and"}
{html_select_date prefix="dateTo" time=$dateTo all_extra="class=\"selectMenu\"" year_empty="" month_empty="" day_empty="" start_year="-5" end_year="+1"}
<input type="hidden" name="dateToHour" value="23" />
<input type="hidden" name="dateToMinute" value="59" />
<input type="hidden" name="dateToSecond" value="59" />
<br/>
<input type="submit" value="{translate key="common.search"}" class="button" />
</form>
<a name="submissions"></a>
<table width="100%" class="listing">
<tr><td colspan="8" class="headseparator"> </td></tr>
<tr class="heading" valign="bottom">
<td width="5%">{translate key="common.id"}</td>
<td width="5%"><span class="disabled">MM-DD</span><br />{translate key="common.assign"}</td>
<td width="5%">{translate key="submissions.sec"}</td>
<td width="25%">{translate key="article.authors"}</td>
<td width="30%">{translate key="article.title"}</td>
<td width="5%">{translate key="submission.complete"}</td>
<td width="25%" align="right">{translate key="common.status"}</td>
</tr>
<tr><td colspan="8" class="headseparator"> </td></tr>
{iterate from=submissions item=submission}
{assign var="articleId" value=$submission->getArticleId()}
<tr valign="top">
<td>{$articleId|escape}</td>
<td>{$submission->getDateNotified()|date_format:$dateFormatTrunc}</td>
<td>{$submission->getSectionAbbrev()|escape}</td>
<td>{$submission->getAuthorString(true)|truncate:40:"..."|escape}</td>
<td><a href="{url op="submission" path=$articleId}" class="action">{$submission->getArticleTitle()|strip_unsafe_html|truncate:60:"..."}</a></td>
<td>{$submission->getDateFinalCompleted()|date_format:$dateFormatTrunc}</td>
<td align="right">
{assign var="status" value=$submission->getStatus()}
{if $status == STATUS_ARCHIVED}
{translate key="submissions.archived"}
{elseif $status == STATUS_QUEUED}
{translate key="submissions.queued"}
{elseif $status == STATUS_PUBLISHED}
{print_issue_id articleId="$articleId"}
{elseif $status == STATUS_DECLINED}
{translate key="submissions.declined"}
{/if}
</td>
</tr>
<tr>
<td colspan="7" class="{if $submissions->eof()}end{/if}separator"> </td>
</tr>
{/iterate}
{if $submissions->wasEmpty()}
<tr>
<td colspan="7" class="nodata">{translate key="submissions.noSubmissions"}</td>
</tr>
<tr>
<td colspan="7" class="endseparator"> </td>
</tr>
{else}
<tr>
<td colspan="5" align="left">{page_info iterator=$submissions}</td>
<td colspan="3" align="right">{page_links anchor="submissions" name="submissions" iterator=$submissions searchField=$searchField searchMatch=$searchMatch search=$search dateFromDay=$dateFromDay dateFromYear=$dateFromYear dateFromMonth=$dateFromMonth dateToDay=$dateToDay dateToYear=$dateToYear dateToMonth=$dateToMonth}</td>
</tr>
{/if}
</table>