You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
1.7 KiB
71 lines
1.7 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title></title>
|
|
<script type="text/javascript" src="https://d3js.org/d3.v7.min.js"></script>
|
|
<script type="text/javascript" src="/app.js"></script>
|
|
<link rel="stylesheet" href="app.css">
|
|
</head>
|
|
<body>
|
|
<h1>Outcomes Tracker</h1>
|
|
<p>See how instances did in comparisson to others</p>
|
|
<section>
|
|
<h2>The Graph</h2>
|
|
<dl>
|
|
<dt>X-Axis:</dt>
|
|
<dd>Graduation Date</dd>
|
|
<dt>Y-Axis:</dt>
|
|
<dd>Percentage of graduates that got a job within 90 days of graduation.</dd>
|
|
</dl>
|
|
<section id="yAxis">
|
|
<h3>Choose Y-Axis</h3>
|
|
90 Day Outcomes %<input checked name="y-axis" type="radio" value="outcomes"/>
|
|
Dropped %<input name="y-axis" type="radio" value="dropped"/>
|
|
</section>
|
|
<section id="metros">
|
|
<h3>Choose Metros To Display</h3>
|
|
<button>All</button>
|
|
<button>None</button>
|
|
<ul></ul>
|
|
</section>
|
|
<section id="courses">
|
|
<h3>Choose Courses To Display</h3>
|
|
<button>All</button>
|
|
<button>None</button>
|
|
<ul></ul>
|
|
</section>
|
|
<svg id="container">
|
|
<svg>
|
|
<g id="points"></g>
|
|
</svg>
|
|
</svg>
|
|
</section>
|
|
<section>
|
|
<h2>Choose Instances To Highlight</h2>
|
|
<form>
|
|
<input type="text" placeholder="Insance ID"/>
|
|
<input type="submit"/>
|
|
</form>
|
|
</section>
|
|
<section>
|
|
<h2>Instance Details</h2>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Instance ID</th>
|
|
<th>Course</th>
|
|
<th>Graduation Date</th>
|
|
<th>Total Students</th>
|
|
<th>Dropped</th>
|
|
<th>Graduates</th>
|
|
<th>Outcomes After 90 Days</th>
|
|
<th>Deselect</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody></tbody>
|
|
</table>
|
|
</section>
|
|
</body>
|
|
</html>
|