mirror of
https://github.com/Team254/cheesy-arena-lite.git
synced 2026-03-09 21:56:50 -04:00
68 lines
1.6 KiB
HTML
68 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
|
|
<!--
|
|
Copyright 2014 Team 254. All Rights Reserved.
|
|
Author: nick@team254.com (Nick Eyre)
|
|
-->
|
|
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<title>Cheesy Arena - Rankings</title>
|
|
<meta name="generator" content="Cheesy Arena" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="/static/css/fonts/roboto-regular/stylesheet.css" type="text/css" charset="utf-8" />
|
|
<link rel="stylesheet" href="/static/css/rankings.css"/>
|
|
</head>
|
|
<body>
|
|
|
|
<div id='titlebar'>
|
|
Event Rankings
|
|
<img src='/static/img/eventlogo-flat.png'>
|
|
</div>
|
|
|
|
<table>
|
|
<tr id='header'>
|
|
<td>Rank</td>
|
|
<td>Team</td>
|
|
<td class='left'>Name</td>
|
|
<td>QS</td>
|
|
<td>Assist</td>
|
|
<td>Auto</td>
|
|
<td>W-L-T</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<div id='container'>
|
|
<table id='old'>
|
|
</table>
|
|
<table id='new'>
|
|
</table>
|
|
</div>
|
|
|
|
<div id='footer'>
|
|
<span class='right'>As of Match 32</span>
|
|
</div>
|
|
|
|
<script id="row-template" type="text/x-handlebars-template">
|
|
{{#each teams}}
|
|
<tr>
|
|
<td>{{this.Rank}}</td>
|
|
<td>{{this.TeamId}}</td>
|
|
<td class='left'>The Cheesy Poofs</td>
|
|
<td>{{this.QualificationScore}}</td>
|
|
<td>{{this.AssistPoints}}</td>
|
|
<td>{{this.AutoPoints}}</td>
|
|
<td>{{this.Wins}} - {{this.Losses}} - {{this.Ties}}</td>
|
|
</tr>
|
|
{{/each}}
|
|
</script>
|
|
|
|
|
|
<script src="/static/lib/jquery.min.js"></script>
|
|
<script src="/static/lib/handlebars-1.3.0.js"></script>
|
|
<script src="/static/js/rankings.js"></script>
|
|
</body>
|
|
</html>
|