-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (36 loc) · 1.47 KB
/
Copy pathindex.html
File metadata and controls
43 lines (36 loc) · 1.47 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
---
layout: default
---
<div class="page-content">
<div>
<!-- Title and Player Buttons -->
<div>
{% include currentPlayers.html %}
</div>
<!-- Nav tabs -->
<ul class="nav nav-pills nav-justified tabpanel" role="tablist">
<li role="presentation" class="active"><a href="#queue" aria-controls="queue" role="tabs" data-toggle="tab">Queue</a></li>
<li role="presentation"><a href="#bench" aria-controls="bench" role="tabs" data-toggle="tab">Bench</a></li>
</ul>
<!-- Tab panes -->
<div class="tab-content">
<div role="tabpanel" class="tab-pane active" id="queue">{% include queueTable.html %}</div>
<div role="tabpanel" class="tab-pane" id="bench">{% include benchTable.html %}</div>
</div>
<!-- Nav tabs -->
<ul class="nav nav-pills nav-justified tabpanel" role="tablist">
<li role="presentation" class="active"><a href="#queue" aria-controls="queue" role="tabs" data-toggle="tab">Queue</a></li>
<li role="presentation"><a href="#bench" aria-controls="bench" role="tabs" data-toggle="tab">Bench</a></li>
</ul>
<hr/>
<!-- Import/export -->
<div class="col-md-12">
{% include importExport.html %}
</div>
</div>
</div>
<script>
playerTable = $("#player-table")[0];
benchTable = $("#bench-table")[0];
updatePage();
</script>