-
Notifications
You must be signed in to change notification settings - Fork 0
/
tournaments.html
128 lines (98 loc) · 4.08 KB
/
tournaments.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<head>
<meta charset="utf-8">
<link rel="icon" type="image/gif" href="static/fav.ico">
<title>evetournaments.com</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<script src="https://cdn.datatables.net/1.10.12/js/jquery.dataTables.min.js"></script>
<!-- https://cdnjs.com/libraries/semantic-ui css here-->
<link href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.1.8/semantic.min.css" rel="stylesheet" type="text/css">
<!-- my css -->
<link href="static/css/my.css" rel="stylesheet" type="text/css">
<!-- my js -->
<script src='static/js/crestCache.js' type='text/javascript'></script>
<script src='static/js/tournaments.js' type='text/javascript'></script>
<script src='static/js/tournamentSeries.js' type='text/javascript'></script>
<script src='static/js/tournamentMatches.js' type='text/javascript'></script>
<script src='static/js/tournamentTeams.js' type='text/javascript'></script>
</head>
<body>
<div class="ui menu">
<div class="header item">
<i class="big crosshairs icon"></i>EVETOURNAMENTS.COM
</div>
<div class="ui selection dropdown basic item">
<i class="dropdown icon"></i>
<span class="text">Tournament</span>
<div id="tourns" class="menu"></div>
</div>
<div class="ui right" id="rl"></div>
<br> Data pre 2018
</div>
<!-- should css these spaces -->
<div class="ui equal width grid">
<div class="eight wide column">
<div>
<table class="ui very basic compact celled table">
<thead>
<tr>
<th>
<div class="ui dropdown">
<i class="help circle icon"></i>
<div class="menu">
<div class="ui item disabled">
<i class= "help circle icon"></i>series type:
<i class="icon circle"></i>completed
<i class="icon circle thin"></i>bye
<i class="icon warning circle"></i>undecided
</div>
</div>
</div>
</th>
<!-- some tournamets these use FC names,
some use alliance names... -->
<th>Red Team | FC</th>
<th>Blue Team | FC</th>
<th>Series Wins</th>
</tr>
</thead>
<tbody id="series"></tbody>
</table>
</div>
</div>
<div class="one wide column">
</div>
<div class="two wide column">
<table class="ui very basic compact celled table">
<thead>
<tr id="teamH">
</tr>
</thead>
<tbody id="teamB"></tbody>
</table>
</div>
<div class="two wide column">
</div>
<div class="two wide column">
<table class="ui very basic compact celled table" style="display:block;">
<thead>
<tr id="banH">
</tr>
</thead>
<tbody id="banB"></tbody>
</table>
</div>
</div>
<!-- semantic js needs to go here -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.1.8/semantic.min.js"></script>
<footer class="segment">
<div id="ft"></div>
</footer>
</body>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-84727787-1', 'auto');
ga('send', 'pageview');
</script>