-
Notifications
You must be signed in to change notification settings - Fork 7
/
fall2016.html.jinja2
54 lines (46 loc) · 1.46 KB
/
fall2016.html.jinja2
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
---
layout: default
title: CS 4400 - Fall 2016
---
<h1>Fall 2016</h1>
<h2>Weekly Schedule</h2>
<p>Lectures: Tuesdays and Thursdays, 13:35 - 14:55 in CULC 152</p>
<h2>Lecture Schedule</h2>
<p>
Topics link to slides, where available.
</p>
<ul>
<li>FoDS means <a href="http://www.amazon.com/Fundamentals-Database-Systems-7th-Edition/dp/0133970779" target="_blank">Fundamentals of Database Systems</a>, the course textbook.
</ul>
<div class="table-responsive">
<table class="table table-bordered table-hover">
<tr class="table-header active">
<th>Date</th>
<th>Topics</th>
<th>Reading and Resources</th>
<th>Reminders</th>
</tr>
{% for row in table %}
{% if "internal_header" in row %}
<tr class="active"><td colspan="4">{{row["internal_header"]}}</td></tr>
{% else %}
<tr>
<td>{{row["date"]}}</td>
<td>{{(row["topic"]|markdown).replace("<p>","").replace("</p>","")}}</td>
<td>
{% for item in row["materials"][:-1] %}
{{(item|markdown).replace("<p>","").replace("</p>","")}}<br/>
{% endfor %}
{{(row["materials"][-1]|markdown).replace("<p>","").replace("</p>","")}}
</td>
<td>
{% for item in row["reminders"][:-1] %}
{{(item|markdown).replace("<p>","").replace("</p>","")}}<br/>
{% endfor %}
{{(row["reminders"][-1]|markdown).replace("<p>","").replace("</p>","")}}
</td>
</tr>
{% endif %}
{% endfor %}
</table>
</div>