forked from Courseography/courseography
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtimetable_creator.html
94 lines (88 loc) · 4.01 KB
/
timetable_creator.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords" content="University of Toronto, Computer Science, UofT computer science, UofT comp sci, time, timetable, u of t, u of t timetable">
<meta name="robots" content="index, follow, noarchive, nosnippet">
<meta name="description" content="University of Toronto Department of Computer Science Timetable Creator.">
<title>Courseography - Grid</title>
<!-- Bootstrap -->
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<link href="style/grid/timetable_styles.css" rel="stylesheet">
</head>
<body>
<div class="row header">
<div class="col-md-6 col-xs-6" id="header">
<h2>2014-2015 Timetable</h2>
</div>
<div class="col-md-6 col-xs-6">
<h2 id="home-link"><a href="planner.html">Back to Graph</a></h2>
</div>
</div>
<div id="dialog">
Conflicting courses are difficult to manage. Make sure you understand the added responsibility of having two or more conflicting courses.
</div>
<div class="row main">
<div class="col-md-2 col-xs-6" id="course-select-wrapper">
<ul id="course-select" class="trapScroll-enabled">
<li id="clear-all">
<h3>Clear All</h3>
</li>
</ul>
</div>
<div class="col-md-2 col-xs-6 col-md-push-8" id="search-layout">
<div id="filter-container">
<form onSubmit="return false;">
<input type="text" id="course-filter" class="form-control" placeholder="Enter a course!" autocomplete="off"/>
</form>
</div>
<div id="search-container">
<div id="search-list">
</div>
</div>
</div>
<div class="col-md-8 col-xs-12 col-md-pull-2">
<div id="info" class="row">
<div id="info-layout">
<h2>
<span id="course-info-code"></span>
<span id="course-info-title"></span>
</h2>
<h4>
<span id="section-stats-section"></span>
<span id="section-stats-instructor"></span>
</h4>
<p id="section-stats-enrol"></p>
</div>
</div>
<div id="beta-warning">
<h3>This tool is currently in Beta. If there are any errors, please let <a target="_blank" href="mailto:[email protected]">Ian and David</a> know and they'll fix them right away! Please consult ROSI for the most accurate information regarding the UTSG undergraduate timetable.</h3>
<h3>Enrolment information last updated 2014-08-23 5:30 a.m.</h3>
</div>
</div>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
<script src="http://code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
<script src="js/common/cookieHandler.js"></script>
<script src="js/grid/generate_grid.js"></script>
<script src="js/common/objects/course.js"></script>
<script src="js/common/objects/section.js"></script>
<script src="js/grid/timetable_util.js"></script>
<script src="js/grid/setup.js"></script>
<script src="js/grid/mouse_events.js"></script>
<script src="js/common/utilities/util.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-52400540-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>