Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 48 additions & 1 deletion 2024parkingall/2024parking.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,51 @@ <h1 class="header-text">2024 All Parking Violations</h1>
</header>
<div class="separator-bar"></div>

<html>
<main class="container">
<section class="table-section">
<h2 class="section-title">2024 Parking Summonses</h2>
<p class="section-description">Explore 2024 parking violations by street name or violation type.</p>

<div class="table-controls">
<div class="search-box">
<input type="text" id="searchInput" placeholder="Search Street Name.." class="search-input">
</div>

<div class="dropdown-container">
<button id="violationDropdownBtn" class="dropdown-btn">Filter by Violation ▼</button>
<div id="violationDropdown" class="dropdown-menu" style="display: none;">
<div class="dropdown-header">
<button id="selectAllBtn" class="select-btn">Select All</button>
<button id="deselectAllBtn" class="select-btn">Deselect All</button>
</div>
<div id="violationCheckboxes" class="violation-checkboxes">
<!-- Checkboxes will be generated here -->
</div>
</div>
</div>

<div class="filter-info">
<span>Showing <span id="rowCount">0</span> of <span id="totalCount">0</span> violations</span>
</div>
</div>

<div class="table-wrapper">
<table id="dataTable" class="data-table">
<thead id="tableHead">
<!-- Headers will be generated from CSV -->
</thead>
<tbody id="tableBody">
<!-- Data will be populated here -->
</tbody>
</table>
</div>

<div class="table-footer">
<p class="no-results" id="noResults" style="display: none;">No violations found matching your search.</p>
</div>
</section>
</main>

<script src="searchable-table.js"></script>
</body>
</html>
Loading