This repository was archived by the owner on Aug 21, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathProcessMetrics.html
More file actions
56 lines (54 loc) · 1.5 KB
/
ProcessMetrics.html
File metadata and controls
56 lines (54 loc) · 1.5 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
<!DOCTYPE html>
<html>
<head>
<base target="_top">
<link rel="stylesheet" href="https://ssl.gstatic.com/docs/script/css/add-ons1.css">
<?!= include('Styles') ?>
<script>
window.data = <?!= JSON.stringify(data) ?>;
</script>
</head>
<body>
<div class="block">
Processing metric <span id="current" data-value="1">1</span> / <?= data.limit ?>
</div>
<div class="block">
<table id="metrics">
<tr>
<th>
Old (Google Analytics)
</th>
<th>
</th>
<th>
New (Source Data)
</th>
</tr>
<tr>
<td>
Name: <span id="oldName"></span><br/>
Scope: <span id="oldScope"></span><br/>
Type: <span id="oldType"></span>
Active: <span id="oldActive"></span><br/>
</td>
<td>
<strong>=></strong>
</td>
<td>
Name: <span id="newName"></span><br/>
Scope: <span id="newScope"></span><br/>
Type: <span id="newType"></span>
Active: <span id="newActive"></span><br/>
</td>
</tr>
</table>
</div>
<div class="block" id="warning"></div>
<div class="block">
<button id="update" class="create" disabled>Update</button>
<button id="skip" class="action" disabled>Skip</button>
<button id="close">Cancel</button>
</div>
<?!= include('ProcessJavaScript') ?>
</body>
</html>