openstackweb/themes/openstack/templates/TrackChairPage_SelectionList.ss
2014-10-31 16:21:41 -03:00

112 lines
3.6 KiB
Scheme

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<!-- Always force latest IE rendering engine or request Chrome Frame -->
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<!-- Use title if it's in the page YAML frontmatter -->
<title>OpenStack Presentation Editor</title>
<link type="text/css" href="/{$ThemeDir}/css/bootstrap3.css" media="screen" rel="stylesheet" />
<link type="text/css" href="/{$ThemeDir}/css/track-chair.css" media="screen" rel="stylesheet" />
<% loop SelectedTalkList %>
<script type="text/javascript">
var selectedTalkListID = {$ID};
var processingLink = "{$Top.Link}SaveSortOrder/{$ID}/?";
</script>
<% end_loop %>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script>
<script type="text/javascript" src="/{$ThemeDir}/javascript/trackchair/bootstrap.js"></script>
<script type="text/javascript" src="/{$ThemeDir}/javascript/trackchair/sorting.js"></script>
</head>
<body class="index">
<!-- ========== Title Bar ========== -->
<div class='container'>
<div class="row">
<div class='col-lg-1'></div>
<div class='col-lg-11'>
<h2 class='title'>Your Track Chair Team Selections</h2>
<div id="info" style="display:none;"></div>
</div>
<div>
<div class='row'>
<div class='col-lg-1' id='left-sidebar'>
<% include TrackChairsSideNav %>
</div>
<div class='col-lg-11'>
<div class='row'>
<div class='col-lg-8'>
<div class='btn-toolbar'>
<div class='btn-group'>
Track: &nbsp;
<a data-toggle='dropdown' href='#'>
<span>$CurrentCategory.Name </span>
<span class='carrot'></span>
</a>
&nbsp; <% if CurrentCategory.MemberIsTrackChair %>(You Are A Track Chair)<% end_if %>
<ul class='dropdown-menu'>
<% loop CategoryButtons %>
<% if MemberIsTrackChair %>
<li class="track-chair">
<a href='{$Top.Link}SelectionList/{$ID}'>$Name</a>
</li>
<% end_if %>
<% end_loop %>
</ul>
</div>
</div>
<p></p>
<% loop SelectedTalkList %>
<ul id="sort-list">
<% if SortedTalks %>
<% loop SortedTalks %>
<li id="listItem_{$ID}" <% if IsAlternate %> class="alternate" <% end_if %> > <% if IsAlternate %>Alternate: <% end_if %><a href="{$Top.Link}Show/{$Talk.ID}">$Talk.PresentationTitle</a> </li>
<% end_loop %>
<% end_if %>
<% if UnsortedTalks %>
<% loop UnsortedTalks %>
<li id="listItem_{$ID}" <% if IsAlternate %> class="alternate" <% end_if %> > <% if IsAlternate %>Alternate: <% end_if %> <a href="{$Top.Link}Show/{$Talk.ID}">$Talk.PresentationTitle</a> </li>
<% end_loop %>
<% end_if %>
<% if UnusedPostions %>
<% loop UnusedPostions %>
<li class="unused-position">$Name</li>
<% end_loop %>
<% end_if %>
</ul>
<% end_loop %>
</div>
<div class='col-lg-4'>
<h4>Ordering Your Presentations</h4>
<p>Please drag your presentations to order them with your team's favorite selection at the top, second favorite next, and so on.</p>
<p>Selected presentations are listed in white. Alternate presentations are in grey at the bottom. An alternate presentation may be used if one of your selected presentations turns out to be unavailable.</p>
</div>
</div>
</div>
</div>
</div>
</body>
</html>