[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
14082024
/
Data
/
htdocs
/
htdocs
/
ojs
/
248
/
templates
/
sectionEditor
/
[
Home
]
File: submissionsInReview.tpl
{** * templates/sectionEditor/submissionsInReview.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. * * Show section editor's submissions in review. * *} <div id="submissions"> <table width="100%" class="listing"> <tr><td colspan="7" class="headseparator"> </td></tr> <tr class="heading" valign="bottom"> <td width="5%">{sort_search key="common.id" sort="id"}</td> <td width="5%"><span class="disabled">{translate key="submission.date.mmdd"}</span><br />{sort_search key="submissions.submit" sort="submitDate"}</td> <td width="5%">{sort_search key="submissions.sec" sort="section"}</td> <td width="20%">{sort_search key="article.authors" sort="authors"}</td> <td width="30%">{sort_search key="article.title" sort="title"}</td> <td width="30%"> {translate key="submission.peerReview"} <table width="100%"> <tr valign="top"> <td width="33%" style="padding: 0 4px 0 0; font-size: 1.0em">{translate key="submission.ask"}</td> <td width="33%" style="padding: 0 4px 0 0; font-size: 1.0em">{translate key="submission.due"}</td> <td width="34%" style="padding: 0 4px 0 0; font-size: 1.0em">{translate key="submission.done"}</td> </tr> </table> </td> <td width="5%">{translate key="submissions.ruling"}</td> </tr> <tr><td colspan="7" class="headseparator"> </td></tr> {iterate from=submissions item=submission} {assign var="articleId" value=$submission->getId()} {assign var="highlightClass" value=$submission->getHighlightClass()} <tr valign="top"{if $highlightClass} class="{$highlightClass|escape}"{/if}> <td>{$submission->getId()}</td> <td>{$submission->getDateSubmitted()|date_format:$dateFormatTrunc}</td> <td>{$submission->getSectionAbbrev()|escape}</td> <td>{$submission->getAuthorString(true)|truncate:40:"..."|escape}</td> <td><a href="{url op="submissionReview" path=$submission->getId()}" class="action">{$submission->getLocalizedTitle()|strip_tags|truncate:40:"..."}</a></td> <td> <table width="100%"> {foreach from=$submission->getReviewAssignments() item=reviewAssignments} {foreach from=$reviewAssignments item=assignment name=assignmentList} {if not $assignment->getCancelled() and not $assignment->getDeclined()} <tr valign="top"> <td width="33%" style="padding: 0 4px 0 0; font-size: 1.0em">{if $assignment->getDateNotified()}{$assignment->getDateNotified()|date_format:$dateFormatTrunc}{else}—{/if}</td> <td width="33%" style="padding: 0 4px 0 0; font-size: 1.0em">{if $assignment->getDateCompleted() || !$assignment->getDateConfirmed()}—{else}{$assignment->getWeeksDue()|default:"—"}{/if}</td> <td width="34%" style="padding: 0 4px 0 0; font-size: 1.0em">{if $assignment->getDateCompleted()}{$assignment->getDateCompleted()|date_format:$dateFormatTrunc}{else}—{/if}</td> </tr> {/if} {foreachelse} <tr valign="top"> <td width="33%" style="padding: 0 4px 0 0; font-size: 1.0em">—</td> <td width="33%" style="padding: 0 4px 0 0; font-size: 1.0em">—</td> <td width="34%" style="padding: 0 0 0 0; font-size:1.0em">—</td> </tr> {/foreach} {/foreach} </table> </td> <td> {foreach from=$submission->getDecisions() item=decisions} {foreach from=$decisions item=decision name=decisionList} {if $smarty.foreach.decisionList.last} {$decision.dateDecided|date_format:$dateFormatTrunc} {/if} {foreachelse} — {/foreach} {/foreach} </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="2" 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 dateSearchField=$dateSearchField section=$section sort=$sort sortDirection=$sortDirection}</td> </tr> {/if} </table> </div>