
Label size is barely readable from a distance, so let's increase it. Change-Id: I536aeff2751f8641147a2ef9a8c057c52d504d6f
77 lines
2.1 KiB
HTML
77 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="refresh" content="60">
|
|
<title>OpenStack PTG tracks for today</title>
|
|
<!-- Latest compiled and minified CSS -->
|
|
<link rel="stylesheet" href="bootstrap-3.3.7.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
|
|
</head>
|
|
<body>
|
|
|
|
<div class="container">
|
|
<div id="PTGsessions">
|
|
</div>
|
|
</div>
|
|
|
|
<script id="PTGtemplate" type="text/x-handlebars-template">
|
|
<style>
|
|
{{#each colors as |color track|}}
|
|
.{{track}} {
|
|
background-color: {{color}};
|
|
}
|
|
{{/each}}
|
|
.label {
|
|
font-size: 12px;
|
|
}
|
|
</style>
|
|
<nav class="navbar navbar-default">
|
|
<div class="container-fluid">
|
|
<div class="navbar-header">
|
|
<a class="navbar-brand" href="#">OpenStack PTG tracks for today</a>
|
|
</div>
|
|
<div class="collapse navbar-collapse navbar-right" id="bs-example-navbar-collapse-1">
|
|
<ul class="nav navbar-nav">
|
|
{{#each slots as |times day|}}
|
|
<li><a id='at{{day}}' href="#a{{day}}" aria-controls="a{{day}}" role="tab" data-toggle="tab">{{ day }}</a></li>
|
|
{{/each}}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
<!-- Tab panes -->
|
|
<div class="tab-content">
|
|
{{#each slots as |times day|}}
|
|
<div role="tabpanel" class="tab-pane" id="a{{day}}">
|
|
<table class="table table-condensed table-striped table-bordered">
|
|
<thead><tr><th>Room</th>
|
|
{{#each times as |time|}}
|
|
<th>{{time.desc}}</th>
|
|
{{/each}}
|
|
</tr></thead>
|
|
{{#each @root.scheduled as |schedule room|}}
|
|
{{#if (roomactive @root.scheduled @root.additional room times)}}
|
|
<tr><td>{{room}}</td>
|
|
{{#each (lookup @root.slots day) as |time|}}
|
|
<td>{{ roomcode @root.scheduled @root.additional room time.name 1 }}</td>
|
|
{{/each}}
|
|
</tr>
|
|
{{/if}}
|
|
{{/each}}
|
|
</table>
|
|
</div>
|
|
{{/each}}
|
|
<center>
|
|
See more information, including current topics of discussion in each room, at
|
|
<a href=http://ptg.openstack.org/ptg.html>http://ptg.openstack.org/ptg.html</a>
|
|
</center>
|
|
</div>
|
|
</script>
|
|
|
|
<script src="jquery-1.9.1.min.js"></script>
|
|
<script src="handlebars-4.0.6.js"></script>
|
|
<script src="bootstrap-3.3.7.min.js"></script>
|
|
<script src="ptg.js"></script>
|
|
</body>
|
|
</html>
|