-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteam-data.html
More file actions
88 lines (67 loc) · 2.9 KB
/
team-data.html
File metadata and controls
88 lines (67 loc) · 2.9 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
85
86
87
88
---
layout: basic
---
<div id= 'teamDataAlertModal' class='modal'>
<div class='modal-content' id = 'tDataModalContent'>
<span class='close' onclick = 'closeTDataModal()'>×</span>
</div>
</div>
<h2 style="text-align:center">Team Data</h2>
<h3 style='text-align:center' id='tDataIntroText'></h3><br>
<h3 style='text-align:left' id='fieldsetTitle'></h3>
<select id='teamSelectList' onchange = 'changeCurrTeam()'>
<option value = '0' selected>Choose a Team:</option selected>
</select>
<h3 style='text-align:center;text-decoration:underline' id='teamStatsTitle'></h3>
</body>
<fieldset>
<div class="w3-row ">
<a href="javascript:void(0)" onclick= 'displayTabContent(event, "pitTabContent");'>
<div class=" w3-half w3-center w3-bottombar-maroon w3-hover-khaki w3-padding tabs">Pit Scouting</div>
</a>
<a href="javascript:void(0)" id = 'matchTab' onclick='displayTabContent(event, "matchTabContent")'>
<div class=" w3-half w3-center w3-bottombar-maroon w3-hover-khaki w3-padding tabs">Match Scouting</div>
</a>
</div>
<div id='pitTabContent' style='display:none' class='w3-container w3-animate-fading tabContent'>
<h3>Pit Scouting</h3>
<h4>Here, enter and view answers to pit scouting questions. If you need to edit the questions, go to the
<a href="season-config.html">Season Configuration</a> page.<br><br>
The answers you save will override previous answers.
</h4>
<h3 id='pitScoutingTitle' class='js_clear_on_load'></h3>
<div style = 'background-color:maroon; color:gold' id='pitQuestionTableHeader' class='w3-row w3-hide-small w3-hide-medium'></div>
<div id='pitQuestionTableBody'></div>
<i>
<h4 id='pitTableConfirmation' class='js_clear_on_load'></h4>
</i>
<button class = "r3-button" id="savePitAnswers">Save</button>
</div>
<div id='matchTabContent' style='display:none' class='w3-container w3-animate-fading tabContent'>
<h3>Match Scouting</h3>
<h4>Here, enter custom notes about the selected team and input game element stats for a given match.
If you need to edit/add game elements, go to the <a href="season-config.html">Season Configuration</a> page.
</h4>
<table id='matchQuestionTable'>
</table>
<i>
<h4 id='matchTableConfirmation' class='js_clear_on_load'></h4>
</i>
<button id = 'matchTableSubmit' class = "r3-button">Save</button>
</div>
</fieldset>
<br><br>
<h3 id='allPitAnswersTitle'></h3>
<div id = 'allTeamsPitAnswers-Div'>
<table id='allTeamsPitAnswers'>
<tr class='teamRow'>
<th>Team #</th>
</tr>
</table>
</div>
<br><br><br>
<h3 id='allMatchAnswersTableTitle'></h3>
<div id='allMatchAnswers-Div'>
<table id='allMatchAnswers'>
</table>
</div>