Skip to content

Commit

Permalink
pkp/pkp-lib#3462 Add Import User error results to result page
Browse files Browse the repository at this point in the history
  • Loading branch information
defstat committed May 6, 2018
1 parent 7728fbf commit a97f1c6
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions plugins/importexport/users/templates/results.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@
<li>{$validationError->message|escape}</li>
{/foreach}
</ul>
{elseif $filterErrors}
<h2>{translate key="plugins.importexport.user.importExportErrors"}</h2>
<ul>
{foreach from=$filterErrors item=filterError}
<li>{$filterError|escape}</li>
{/foreach}
</ul>
{else}
{translate key="plugins.importexport.users.importComplete"}
{/if}

0 comments on commit a97f1c6

Please sign in to comment.