Spaces:
Sleeping
Sleeping
File size: 3,897 Bytes
634567d 3293ecf 634567d 3293ecf 634567d 3293ecf 634567d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Batch Processing - Smart Summarizer</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body>
<!-- Top Navigation Bar -->
<nav class="top-navbar">
<a href="/" class="navbar-logo">
<div class="logo-circle">S</div>
<span>Smart Summarizer</span>
</a>
<!-- Mobile Menu Toggle -->
<button class="mobile-menu-toggle" onclick="toggleMobileMenu()">
<i class="fas fa-bars"></i>
</button>
<div class="navbar-links" id="navbarLinks">
<a href="/" class="nav-item">
<i class="fas fa-home"></i> Home
</a>
<a href="/single-summary" class="nav-item">
<i class="fas fa-file-alt"></i> Single Summary
</a>
<a href="/comparison" class="nav-item">
<i class="fas fa-balance-scale"></i> Comparison
</a>
<a href="/batch" class="nav-item active">
<i class="fas fa-layer-group"></i> Batch
</a>
<a href="/evaluation" class="nav-item">
<i class="fas fa-chart-bar"></i> Evaluation
</a>
</div>
</nav>
<i class="fas fa-chart-bar"></i> Evaluation
</a>
</div>
</nav>
<!-- Page Content -->
<div class="page-container">
<h1 class="page-title">Batch Processing</h1>
<p class="page-subtitle">Process multiple documents simultaneously for high-throughput summarization.</p>
<!-- Controls -->
<div class="batch-controls">
<button class="btn-secondary" id="loadSamplesBtn">Load Samples</button>
<button class="btn-primary" id="runBatchBtn">Run Batch</button>
</div>
<!-- Batch Table -->
<div class="batch-table-container">
<table class="batch-table">
<thead>
<tr>
<th>SOURCE PREVIEW</th>
<th>MODELS</th>
<th>STATUS</th>
<th>ACTIONS</th>
</tr>
</thead>
<tbody id="batchTableBody">
<tr class="empty-state">
<td colspan="4">
<div class="empty-message">
No items in the queue. Load samples or upload a CSV to begin.
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Export Button -->
<div class="export-section">
<button class="btn-secondary" id="exportBtn">
<span>📥</span> Export All Results (CSV)
</button>
</div>
</div>
<!-- Footer -->
<footer class="footer">
<div class="footer-left">
<div class="logo-circle" style="width: 24px; height: 24px; font-size: 0.9rem;">S</div>
<span>Smart Summarizer</span>
</div>
<div class="footer-right">
<span>© 2025 Smart Summarizer. Abdul Razzaq Ansari</span>
<a href="https://github.com/Rajak13/Smart-Summarizer" target="_blank" class="footer-link">
<i class="fab fa-github"></i> GitHub Repository
</a>
</div>
</footer>
<script src="{{ url_for('static', filename='js/batch.js') }}"></script>
<!-- Mobile Menu JavaScript -->
<script src="{{ url_for('static', filename='js/mobile-menu.js') }}"></script>
</body>
</html>
|