%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/IntvJournal/templates/author/ |
Upload File : |
{**
* templates/author/completed.tpl
*
* Copyright (c) 2003-2012 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* Show the details of completed submissions.
*
*}
<div id="submissions">
<table class="listing" width="100%">
<tr><td class="headseparator" colspan="{if $statViews}7{else}6{/if}"> </td></tr>
<tr valign="bottom" class="heading">
<td width="5%">{sort_heading key="common.id" sort="id"}</td>
<td width="5%"><span class="disabled">{translate key="submission.date.mmdd"}</span><br />{sort_heading key="submissions.submit" sort="submitDate"}</td>
<td width="5%">{sort_heading key="submissions.sec" sort="section"}</td>
<td width="23%">{sort_heading key="article.authors" sort="authors"}</td>
<td width="32%">{sort_heading key="article.title" sort="title"}</td>
{if $statViews}<td width="5%">{sort_heading key="submission.views" sort="views"}</td>{/if}
<td width="25%" align="right">{sort_heading key="common.status" sort="status"}</td>
</tr>
<tr><td class="headseparator" colspan="{if $statViews}7{else}6{/if}"> </td></tr>
{iterate from=submissions item=submission}
{assign var="articleId" value=$submission->getId()}
<tr valign="top">
<td>{$articleId|escape}</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="submission" path=$articleId}" class="action">{$submission->getLocalizedTitle()|strip_tags|truncate:60:"..."}</a></td>
{assign var="status" value=$submission->getSubmissionStatus()}
{if $statViews}
<td>
{if $status==STATUS_PUBLISHED}
{assign var=viewCount value=0}
{foreach from=$submission->getGalleys() item=galley}
{assign var=thisCount value=$galley->getViews()}
{assign var=viewCount value=$viewCount+$thisCount}
{/foreach}
{$viewCount|escape}
{else}
—
{/if}
</td>
{/if}
<td align="right">
{if $status==STATUS_ARCHIVED}{translate key="submissions.archived"}
{elseif $status==STATUS_PUBLISHED}{print_issue_id articleId="$articleId"}
{elseif $status==STATUS_DECLINED}{translate key="submissions.declined"}
{/if}
</td>
</tr>
<tr>
<td colspan="{if $statViews}7{else}6{/if}" class="{if $submissions->eof()}end{/if}separator"> </td>
</tr>
{/iterate}
{if $submissions->wasEmpty()}
<tr>
<td colspan="{if $statViews}7{else}6{/if}" class="nodata">{translate key="submissions.noSubmissions"}</td>
</tr>
<tr>
<td colspan="{if $statViews}7{else}6{/if}" class="endseparator"> </td>
</tr>
{else}
<tr>
<td colspan="{if $statViews}5{else}4{/if}" align="left">{page_info iterator=$submissions}</td>
<td colspan="2" align="right">{page_links anchor="submissions" name="submissions" iterator=$submissions sort=$sort sortDirection=$sortDirection}</td>
</tr>
{/if}
</table>
</div>