Skip to content

Instantly share code, notes, and snippets.

@jpschewe
Created May 11, 2019 12:25
Show Gist options
  • Save jpschewe/ae7c17b0f92a6b4c47f484adc331f372 to your computer and use it in GitHub Desktop.
Save jpschewe/ae7c17b0f92a6b4c47f484adc331f372 to your computer and use it in GitHub Desktop.
<html>
<head>
<style>
BODY {
background: #FFFCFF;
margin-top: 4;
}
.no-judge {
background-color: red;
}
.missing-score {
background-color: yellow;
}
.good {
background-color: lightgreen;
}
table {
border-collapse: collapse;
}
table, th, td {
border: 1px solid black;
}
</style>
<title>Subjective Score Summary</title>
</head>
<body>
<h2>Lakes</h2>
<table>
<tr>
<th>Category</th>
<th>Judge</th>
<th>Num Teams Expected</th>
<th>Num Teams Scored</th>
</tr>
<tr>
<td>TERRI CARLSON</td>
<td>Core Values</td>
<td>16</td>
<td class='good'>16</td>
</tr>
<tr>
<td>HOGAN</td>
<td>Project</td>
<td>16</td>
<td class='good'>16</td>
</tr>
<tr>
<td>ANDREW ELDRED</td>
<td>Robot Design</td>
<td>16</td>
<td class='good'>16</td>
</tr>
<tr>
<td>TIM DAVID</td>
<td>Programming</td>
<td>16</td>
<td class='good'>16</td>
</tr>
</table>
<h2>Prairie</h2>
<table>
<tr>
<th>Category</th>
<th>Judge</th>
<th>Num Teams Expected</th>
<th>Num Teams Scored</th>
</tr>
<tr>
<td>CARMEN MONSERRATE</td>
<td>Core Values</td>
<td>16</td>
<td class='good'>16</td>
</tr>
<tr>
<td>TAMMY BARNABY</td>
<td>Core Values</td>
<td>16</td>
<td class='good'>16</td>
</tr>
<tr>
<td>JENNI FUCHS</td>
<td>Project</td>
<td>16</td>
<td class='missing-score'>10</td>
</tr>
<tr>
<td>STEVE WHALEN</td>
<td>Robot Design</td>
<td>16</td>
<td class='missing-score'>10</td>
</tr>
<tr>
<td>TOMMY HOMAN</td>
<td>Programming</td>
<td>16</td>
<td class='good'>5</td>
</tr>
</table>
<h2>Woods</h2>
<table>
<tr>
<th>Category</th>
<th>Judge</th>
<th>Num Teams Expected</th>
<th>Num Teams Scored</th>
</tr>
<tr>
<td>CRAIG</td>
<td>Core Values</td>
<td>16</td>
<td class='good'>16</td>
</tr>
<tr>
<td>SUE EVANS</td>
<td>Core Values</td>
<td>16</td>
<td class='good'>16</td>
</tr>
<tr>
<td>HENRY GORDON</td>
<td>Project</td>
<td>16</td>
<td class='good'>16</td>
</tr>
<tr>
<td>JOSEPH BLOEDOORN</td>
<td>Project</td>
<td>16</td>
<td class='good'>16</td>
</tr>
<tr>
<td>CHRIS JAMES</td>
<td>Robot Design</td>
<td>Woods</td>
<td class='good'>16</td>
</tr>
<tr>
<td class='no-judge'></td>
<td>Robot Design</td>
<td>16</td>
<td class='no-judge'>0</td>
</tr>
<tr>
<td class='no-judge'></td>
<td>Programming</td>
<td>16</td>
<td class='no-judge'>0</td>
</tr>
</table>
<p>Text about continuing with score summarization here and the button to finish.</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment