This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
Incam_SGD/templates/ktcore/document/admin/archivebrowse.smarty

33 lines
1.1 KiB
Plaintext

<h2>{i18n}Archived Documents{/i18n}</h2>
<p class="descriptiveText">{i18n}In order to keep the documents which are visible useful
to end users it is possible to <strong>archive</strong> old documents. Users who
want to see these old documents need to request their restoration. These requests
will typically be done within the system and will generate a
notification to you.{/i18n}
</p>
<p>{i18n}Use the folder collection and path below to browse to the folder containing the documents you wish to restore.{/i18n}
</p>
<br />
{foreach from=$breadcrumbs item=breadcrumb name=bc}
{if !$smarty.foreach.bc.last}
<a href="{$breadcrumb.url}">{$breadcrumb.name|sanitize}</a> &raquo;
{else}
{$breadcrumb.name|sanitize}
{/if}
{/foreach}
<form method="POST" action="{$smarty.server.PHP_SELF}">
<input type="hidden" name="action" value="confirm_restore" />
<input type="hidden" name="fFolderId" value="{$folder->getId()}" />
{$collection->render()}
<div class="form_actions">
<input type="submit" name="submit[move]" value="{i18n}Restore{/i18n}" />
</div>
</fieldset>
</form>