
Add admin command to add (and clean) a message of the day (motd) to the rendered page. Can be used for emergency messages (using level 'danger') or more general information. Change-Id: Ie84d1a826c2f84a7ccdafd08176eef9aa2c5a3f1
125 lines
4.1 KiB
HTML
125 lines
4.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="refresh" content="180">
|
|
<title>Currently at the PTG</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">
|
|
<h2>OpenStack Project Teams Gathering</h2>
|
|
<p>See what is being discussed currently at the PTG, and what's coming next.<p>
|
|
<div id="PTGsessions">
|
|
</div>
|
|
</div>
|
|
|
|
<script id="PTGtemplate" type="text/x-handlebars-template">
|
|
<style>
|
|
.bot-help {
|
|
font-size: 85%;
|
|
font-style: italic;
|
|
padding-left: 8px;
|
|
padding-bottom: 4px;
|
|
}
|
|
{{#each colors as |color track|}}
|
|
.{{track}} {
|
|
background-color: {{color}};
|
|
}
|
|
{{/each}}
|
|
</style>
|
|
{{#if motd.message}}
|
|
<div class="alert alert-{{motd.level}}" role="alert">{{motd.message}}</div>
|
|
{{/if}}
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading"><h3 class="panel-title">Current discussion topics</h3></div>
|
|
<table class="table">
|
|
{{#each tracks as |track| }}
|
|
{{#if (lookup @root.now track) }}
|
|
<tr>
|
|
<td class="col-sm-1"><span class="label label-primary {{track}}">{{track}}</span></td>
|
|
<td>{{#trackContentLine}}{{lookup @root.now track}}{{/trackContentLine}}</td>
|
|
<td>{{lookup @root.location track}}</td>
|
|
</tr>
|
|
{{/if}}
|
|
{{else}}
|
|
<tr><td><small><i>Nothing yet</i></small><td></tr>
|
|
{{/each}}
|
|
</table>
|
|
<div class="bot-help">
|
|
Use <code>#TRACK now INFO</code> to set;
|
|
this also clears "Coming up next..." info below.
|
|
<a href="https://github.com/openstack/ptgbot/blob/master/README.rst">(more help)</a>
|
|
</div>
|
|
</div>
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading"><h3 class="panel-title">Coming up next...</h3></div>
|
|
<table class="table">
|
|
{{#each tracks as |track| }}
|
|
{{#if (lookup @root.next track) }}
|
|
<tr>
|
|
<td class="col-sm-1"><span class="label label-primary {{track}}">{{track}}</span></td>
|
|
<td>
|
|
{{#each (lookup @root.next track) as |item|}}
|
|
{{#trackContentLine}}{{item}}{{/trackContentLine}} <br/>
|
|
{{/each}}
|
|
</td>
|
|
</tr>
|
|
{{/if}}
|
|
{{else}}
|
|
<tr><td><small><i>Nothing yet</i></small><td></tr>
|
|
{{/each}}
|
|
</table>
|
|
<div class="bot-help">
|
|
Use <code>#TRACK next INFO</code> to append.
|
|
<a href="https://github.com/openstack/ptgbot/blob/master/README.rst">(more help)</a>
|
|
</div>
|
|
</div>
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading"><h3 class="panel-title">Scheduled tracks</h3></div>
|
|
<div class="panel-body">
|
|
<ul class="nav nav-tabs" role="tablist">
|
|
{{#each slots as |times day|}}
|
|
<li role="presentation"><a id='st{{day}}' href="#s{{day}}" aria-controls="s{{day}}" role="tab" data-toggle="tab">{{day}}</a></li>
|
|
{{/each}}
|
|
</ul>
|
|
<!-- Tab panes -->
|
|
<div class="tab-content">
|
|
{{#each slots as |times day|}}
|
|
<div role="tabpanel" class="tab-pane" id="s{{day}}">
|
|
<table class="table table-condensed">
|
|
<thead><tr><th></th>
|
|
{{#each times as |time|}}
|
|
<th>{{time.desc}}</th>
|
|
{{/each}}
|
|
</tr></thead>
|
|
{{#each @root.schedule as |sched room|}}
|
|
{{#if (roomactive @root.schedule room times)}}
|
|
<tr><td>{{room}}</td>
|
|
{{#each (lookup @root.slots day) as |time|}}
|
|
<td>{{ roomcode @root.schedule room time.name 0 }}</td>
|
|
{{/each}}
|
|
</tr>
|
|
{{/if}}
|
|
{{/each}}
|
|
</table>
|
|
</div>
|
|
{{/each}}
|
|
</div>
|
|
</div>
|
|
<div class="bot-help">
|
|
Use <code>#TRACK book SLOTREF</code> to book one of the empty slots with the ptgbot.
|
|
<a href="https://github.com/openstack/ptgbot/blob/master/README.rst">(more help)</a>
|
|
</div>
|
|
</div>
|
|
<p class="text-muted">Content on this page is being driven by room operators through the <a href="https://github.com/openstack/ptgbot/blob/master/README.rst">openstackptg bot</a> on the <a href="http://eavesdrop.openstack.org/irclogs/%23openstack-ptg/">#openstack-ptg IRC channel</a>. It was last refreshed on {{timestamp}}.</p>
|
|
</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>
|