-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (72 loc) · 2.87 KB
/
index.html
File metadata and controls
85 lines (72 loc) · 2.87 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Xenium Explorer Files</title>
<link rel="stylesheet" href="assets/css/styles.css">
</head>
<body>
<div class="container">
<header>
<h1>Xenium Explorer</h1>
<div class="last-updated">Last updated: <span id="update-time">Loading...</span></div>
</header>
<div class="filter-section">
<div class="filter-group">
<label for="source-type-filter">Source Type</label>
<select id="source-type-filter">
<option value="sopa">Sopa Only</option>
<option value="">All Sources</option>
<option value="oba">OBA Only</option>
</select>
</div>
<div class="filter-group">
<label for="project-filter">Project</label>
<select id="project-filter">
<option value="">All Projects</option>
</select>
</div>
<div class="filter-group">
<label for="brp-filter">Block ID</label>
<select id="brp-filter">
<option value="">All Block IDs</option>
</select>
</div>
<div class="filter-group">
<label for="panel-filter">Panel</label>
<select id="panel-filter">
<option value="">All Panels</option>
</select>
</div>
<div class="filter-group">
<label for="run-id-filter">Run ID</label>
<select id="run-id-filter">
<option value="">All Run IDs</option>
</select>
</div>
<div class="filter-group">
<label for="date-filter">Created Date</label>
<input type="date" id="date-filter">
</div>
<div class="filter-group">
<label for="search-filter">Search</label>
<input type="text" id="search-filter" placeholder="Search by any term...">
</div>
<div class="filter-group" style="justify-content: flex-end;">
<button id="reset-filters">Reset Filters</button>
</div>
</div>
<div class="results-section">
<div class="results-header">
<div class="results-count">Showing <span id="filtered-count">0</span> of <span id="total-count">0</span> files</div>
</div>
<div id="results-container">
<div class="loading">Loading experiment.xenium files...</div>
</div>
</div>
</div>
<div class="notification" id="notification">Copied to clipboard!</div>
<script src="assets/js/main.js"></script>
</body>
</html>