an updated and hopefully faster version of the ST Toolbox
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

34 lines
1.1 KiB

{{define "document_remove"}}
<h2>Document Removal</h2>
<div class="upload-container">
<!-- Step 1: CSV Upload -->
<div class="content">
<h3 class="submenu-header">Step 1: Upload CSV file with Job IDs</h3>
{{template "document_remove_csv" .}}
</div>
<!-- Step 2: Document Selection -->
<div class="content">
<h3 class="submenu-header">Step 2: Select Documents to Remove</h3>
{{template "document_remove_form" .}}
<!-- Job IDs container moved inside the form for better structure -->
<div id="job-ids-removal-container" style="display: none;">
<!-- Hidden input placeholder for job IDs -->
</div>
<div id="job-results" class="job-selection">
<!-- Jobs and document selection will appear here -->
</div>
</div>
<!-- Step 3: Results -->
<div class="content">
<h3 class="submenu-header">Step 3: Removal Results</h3>
<div id="removal-results" class="upload-results">
<!-- Results will appear here after removing documents -->
</div>
</div>
</div>
{{end}}