-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmetadata_fields.html
More file actions
81 lines (76 loc) · 3.41 KB
/
metadata_fields.html
File metadata and controls
81 lines (76 loc) · 3.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Metadata Fields</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="exports.css">
</head>
<body>
<div id="nav-root"></div>
<header class="page-header" id="metadata-fields-header">
<div class="header-row" id="metadata-fields-header-row">
<div class="header-copy" id="metadata-fields-header-copy">
<h1 class="page-title" id="metadata-fields-title">Metadata Fields</h1>
<p class="section-hint" id="metadata-fields-hint">Review retention counts for each application across the last 7, 30, and 180 days.</p>
</div>
<div class="header-actions" id="metadata-fields-actions" aria-label="Metadata actions">
<button type="button" class="tertiary-btn" id="deep-dive-button">Deep Dive</button>
<button type="button" class="primary-btn" id="metadata-export-button">Export</button>
</div>
</div>
</header>
<main class="content" id="metadata-fields-main" aria-labelledby="metadata-fields-title">
<section class="card" id="visitor-metadata-card" aria-label="Visitor metadata table">
<div class="card-header" id="visitor-metadata-card-header">
<div class="form-intro" id="visitor-metadata-form-intro">
<h2 class="section-title" id="visitor-metadata-section-title">Visitor</h2>
<p class="section-hint" id="visitor-metadata-section-hint">Retention counts for visitor metadata across the last 7, 30, and 180 days.</p>
</div>
</div>
<div class="table-wrapper" id="visitor-metadata-table-wrapper" role="region" aria-label="Visitor metadata table wrapper" tabindex="0">
<table class="data-table" id="visitor-metadata-table">
<thead>
<tr>
<th scope="col">Sub ID</th>
<th scope="col">App Name</th>
<th scope="col">App ID</th>
<th scope="col">7 days</th>
<th scope="col">30 days</th>
<th scope="col">180 days</th>
</tr>
</thead>
<tbody id="visitor-metadata-table-body">
</tbody>
</table>
</div>
</section>
<section class="card" id="account-metadata-card" aria-label="Account metadata table">
<div class="card-header" id="account-metadata-card-header">
<div class="form-intro" id="account-metadata-form-intro">
<h2 class="section-title" id="account-metadata-section-title">Account</h2>
<p class="section-hint" id="account-metadata-section-hint">Retention counts for account metadata using the same tracking windows.</p>
</div>
</div>
<div class="table-wrapper" id="account-metadata-table-wrapper" role="region" aria-label="Account metadata table wrapper" tabindex="0">
<table class="data-table" id="account-metadata-table">
<thead>
<tr>
<th scope="col">Sub ID</th>
<th scope="col">App Name</th>
<th scope="col">App ID</th>
<th scope="col">7 days</th>
<th scope="col">30 days</th>
<th scope="col">180 days</th>
</tr>
</thead>
<tbody id="account-metadata-table-body">
</tbody>
</table>
</div>
</section>
</main>
<script type="module" src="src/entries/metadata_fields.js"></script>
</body>
</html>