git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_SGD/tags/3.7.0.2_original@1 eb19766c-00d9-a042-a3a0-45cb8ec72764
43 lines
1.2 KiB
Plaintext
43 lines
1.2 KiB
Plaintext
<h2>{i18n}Delete Files and Folders{/i18n}</h2>
|
|
|
|
<form action="{$smarty.server.PHP_SELF}" method="POST">
|
|
<fieldset>
|
|
<legend>{i18n}Specify Reason for Delete{/i18n}</legend>
|
|
<p class="descriptiveText">{i18n}Please give a reason for deleting these files. This
|
|
will be recorded in the documents' "Transaction History"{/i18n}.</p>
|
|
<input type="hidden" name="action" value="doDelete" />
|
|
<input type="hidden" name="fFolderId" value="{$folder_id}" />
|
|
|
|
{* Include the document/folder ids *}
|
|
|
|
{foreach item=iDocId from=$documents}
|
|
<input type="hidden" name="selection_d[]" value="{$iDocId}" />
|
|
{/foreach}
|
|
|
|
{foreach item=iFolderId from=$folders}
|
|
<input type="hidden" name="selection_f[]" value="{$iFolderId}" />
|
|
{/foreach}
|
|
|
|
|
|
|
|
<div class="field">
|
|
<label>{i18n}Items to delete{/i18n}</label>
|
|
<p class="descriptiveText">{i18n}The items that you selected to delete.{/i18n}</p>
|
|
{if ($folder_string)}{$folder_string}<br />{/if}
|
|
{if ($document_string)}{$document_string}{/if}
|
|
</div>
|
|
|
|
|
|
|
|
{foreach item=oWidget from=$form_fields}
|
|
{$oWidget->render()}
|
|
{/foreach}
|
|
|
|
<div class="form_actions">
|
|
<input type="submit" value="{i18n}Delete{/i18n}" />
|
|
<input type="submit" name="kt_cancel[{addQS}fFolderId={$folder_id}{/addQS}]" value="{i18n}Cancel{/i18n}" />
|
|
</div>
|
|
|
|
</fieldset>
|
|
</form>
|