-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanalysis.html
90 lines (79 loc) · 3.62 KB
/
analysis.html
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
<!DOCTYPE html>
<head>
<title>Pisces Scouting Analysis</title>
<link rel="stylesheet" type="text/css" href="css/common.css">
<link rel="stylesheet" type="text/css" href="css/jquery.modal.css">
<link rel="stylesheet" type="text/css" href="css/analysis.css">
</head>
<body>
<nav id="links"><strong>Analysis | </strong><a href="scout.html">Scouting</a></nav>
<div class="col" style="float:left">
<h1>Matches <a href="javascript:void(0);" id="match-data" class="detailsButton" name="match-filter-toggle">Raw</a> <a href="javascript:void(0);" id="match-load" class="detailsButton" name="match-filter-toggle">Load</a></h1>
<a href="javascript:void(0);" id="match-filter-toggle" class="detailsButton" name="match-filter-toggle">Filter</a><br>
<div class="filter" id="match-filter" style="display:none">
<select class="regional-select" id="match-regional">
<option value="all">
All Regionals
</option>
</select>
<input class="year-select" id="match-year" type="number" placeholder="Year">
<input class="year-select" id="match-team" type="number" placeholder="Team">
<a href="javascript:void(0);" id="update-match" class="detailsButton" name="update-match">Update</a>
</div><br />
<div>
<table id="matches"></table>
</div>
</div>
<div class="col" style="display:inline-block;">
<h1>Details</h1>
Total Score: <span id="total">0</span><br />
Litter in Landfill: <span id="landfill">0</span><br />
Unprocessed Litter: <span id="unprocessed">0</span><br />
Auto Set: <span id="auto-set">none</span><br />
Robot Set: <span id="robot-set">false</span><br />
Can Set: <span id="can-set">false</span>
<table id="stack-window"></table>
<br />
<a href="javascript:void(0);" id="commit-match" class="detailsButton">Commit</a>
<a href="javascript:void(0);" id="delete-match" class="detailsButton">Delete</a>
</div>
<div class="col" style="float:right;">
<h1>Teams</h1>
<a href="javascript:void(0);" id="team-filter-toggle" class="detailsButton" name="team-filter-toggle">Filter</a>
<a href="javascript:void(0);" id="edit-regionals" class="detailsButton">Edit Regionals</a><br />
<div class="filter" id="team-filter" style="display:none">
<select class="regional-select" id="team-regional">
<option value="all">
All Regionals
</option>
</select>
<a href="javascript:void(0);" id="update-team" class="detailsButton" name="update-team">Update</a>
</div>
<div>
<table id="teams"></table>
</div>
</div><script src="js/jquery-2.1.3.min.js" type="text/javascript">
</script><script src="js/jquery.modal.min.js" type="text/javascript">
</script><script src="js/taffy.js" type="text/javascript">
</script><script src="js/lib.js" type="text/javascript">
</script><script src="js/pisces.js" type="text/javascript">
</script><script src="js/analysis.js" type="text/javascript">
</script><script src="js/jquery.floatThead.min.js" type="text/javascript">
</script>
<div class="modal" style="display:none">
<select class="regional-select" id="regional-edit">
<option value="all" disabled="true">
All Regionals
</option>
</select>
<input id="regional-new" type="text" placeholder="New" />
<a href="javascript:void(0);" id="new-regional-button" class="detailsButton">New</a>
<a href="javascript:void(0);" id="save-regional-button" class="detailsButton">Save</a><br />
<a href="javascript:void(0);" id="raw-regional-button" class="detailsButton">Raw</a>
<a href="javascript:void(0);" id="load-regional-button" class="detailsButton">Load</a>
<div class="wrapper">
<table></table>
</div>
</div>
</body>
</html>