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.
24 lines
873 B
24 lines
873 B
{{define "csv_upload"}}
|
|
<div class="content">
|
|
<h3 class="submenu-header">Step 1: Upload Jobs CSV</h3>
|
|
<div>
|
|
<label>Select CSV file with job numbers:</label>
|
|
<input class="card-input" type="file" id="csv-file" name="csv-file" accept=".csv" required>
|
|
|
|
<button type="button" id="upload-csv" class="btn-primary">Upload CSV</button>
|
|
|
|
<div id="csv-loading-indicator" class="htmx-indicator" style="display: none;">
|
|
<span>Processing CSV...</span>
|
|
<div class="loading-indicator"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="csv-preview" class="fade-me-out" style="display: none; margin-top: 1rem;">
|
|
<h4>Detected Jobs</h4>
|
|
<div class="job-list">
|
|
<!-- This will be populated with JavaScript after CSV upload -->
|
|
<p>No jobs loaded yet</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{end}}
|