| 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 : C:/Old Sites/Libteiser - Ojs/ojs/templates/editor/issues/ |
Upload File : |
{**
* futureIssues.tpl
*
* Copyright (c) 2003-2008 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* Listings of future (unpublished) issues.
*
* $Id: futureIssues.tpl,v 1.19 2008/06/11 18:55:19 asmecher Exp $
*}
{assign var="pageTitle" value="editor.issues.futureIssues"}
{url|assign:"currentUrl" page="editor" op="issues"}{include file="common/header.tpl"}
<ul class="menu">
<li><a href="{url op="createIssue"}">{translate key="editor.navigation.createIssue"}</a></li>
<li class="current"><a href="{url op="futureIssues"}">{translate key="editor.navigation.futureIssues"}</a></li>
<li><a href="{url op="backIssues"}">{translate key="editor.navigation.issueArchive"}</a></li>
</ul>
<br/>
<a name="issues"></a>
<table width="100%" class="listing">
<tr>
<td colspan="3" class="headseparator"> </td>
</tr>
<tr class="heading" valign="bottom">
<td width="80%">{translate key="issue.issue"}</td>
<td width="15%">{translate key="editor.issues.numArticles"}</td>
<td width="5%" align="right">{translate key="common.action"}</td>
</tr>
<tr>
<td colspan="3" class="headseparator"> </td>
</tr>
{iterate from=issues item=issue}
<tr valign="top">
<td><a href="{url op="issueToc" path=$issue->getIssueId()}" class="action">{$issue->getIssueIdentification()|escape}</a></td>
<td>{$issue->getNumArticles()}</td>
<td align="right"><a href="{url op="removeIssue" path=$issue->getIssueId()}" onclick="return confirm('{translate|escape:"jsparam" key="editor.issues.confirmDelete"}')" class="action">{translate key="common.delete"}</a></td>
</tr>
<tr>
<td colspan="3" class="{if $issues->eof()}end{/if}separator"> </td>
</tr>
{/iterate}
{if $issues->wasEmpty()}
<tr>
<td colspan="3" class="nodata">{translate key="issue.noIssues"}</td>
</tr>
<tr>
<td colspan="3" class="endseparator"> </td>
</tr>
{else}
<tr>
<td align="left">{page_info iterator=$issues}</td>
<td colspan="2" align="right">{page_links anchor="issues" name="issues" iterator=$issues}</td>
</tr>
{/if}
</table>
{include file="common/footer.tpl"}