| 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:/inetpub/wwwroot/Topogeo/ojs/plugins/importexport/native/ |
Upload File : |
{**
* articleContext.tpl
*
* Copyright (c) 2003-2012 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* Prompt for "context" for article import: section and issue
*
* $Id$
*}
{strip}
{assign var="pageTitle" value="plugins.importexport.native.import.articles"}
{include file="common/header.tpl"}
{/strip}
<p>{translate key="plugins.importexport.native.import.articles.description"}</p>
<div id="articleContext">
<form action="{plugin_url path="import"}" method="post">
<input type="hidden" name="temporaryFileId" value="{$temporaryFileId|escape}"/>
{translate key="section.section"}
<select name="sectionId" id="sectionId" size="1" class="selectMenu">{html_options options=$sectionOptions selected=$sectionId}</select>
<br />
<div id="issues">
<table width="100%" class="listing">
<tr>
<td colspan="4" class="headseparator"> </td>
</tr>
<tr class="heading" valign="bottom">
<td width="5%"> </td>
<td width="65%">{translate key="issue.issue"}</td>
<td width="15%">{translate key="editor.issues.published"}</td>
<td width="15%">{translate key="editor.issues.numArticles"}</td>
</tr>
<tr>
<td colspan="4" class="headseparator"> </td>
</tr>
{iterate from=issues item=issue}
<tr valign="top">
<td><input {if !$notFirst}checked="checked" {/if}name="issueId" type="radio" value="{$issue->getId()}"/></td>
{assign var=notFirst value=1}
<td><a href="{url page="issue" op="view" path=$issue->getId()}" class="action">{$issue->getIssueIdentification()|strip_unsafe_html|nl2br}</a></td>
<td>{$issue->getDatePublished()|date_format:"$dateFormatShort"|default:"—"}</td>
<td>{$issue->getNumArticles()|escape}</td>
</tr>
<tr>
<td colspan="4" class="{if $issues->eof()}end{/if}separator"> </td>
</tr>
{/iterate}
{if $issues->wasEmpty()}
<tr>
<td colspan="4" class="nodata">{translate key="issue.noIssues"}</td>
</tr>
<tr>
<td colspan="4" class="endseparator"> </td>
</tr>
{else}
<tr>
<td colspan="2" align="left">{page_info iterator=$issues}</td>
<td colspan="2" align="right">{page_links anchor="issues" name="issues" iterator=$issues temporaryFileId=$temporaryFileId}</td>
</tr>
{/if}
</table>
<p><input {if $issues->wasEmpty()}disabled="disabled" {/if}type="submit" value="{translate key="common.import"}" class="button defaultButton"/></p>
</form>
</div>
</div>
{include file="common/footer.tpl"}