Tags:: #unicourse
Links:: [[My Courses]]
___
Summary::
Year::
Semester::
Professor::
___
## Units
```dataview
table Summary
from #unit and !outgoing([[]])
where contains(Course, [[]])
sort Created asc
```
## Assignments
```dataview
table Deadline, Status
FROM #assignment and !"Extras"
where contains(Course, [[]])
SORT Deadline asc
```
## Lectures
```dataview
table file.ctime as "Created", Status
FROM #🎓 AND !"Extras"
where contains(Course, [[]])
SORT file.ctime desc
```
## Inputs
```dataview
table Source, Status
FROM "Literature Notes/MISC" AND !"Extras"
where contains(Course, [[]])
SORT Created desc
```
<% await tp.file.move("Literature Notes/Courses/" + tp.file.title) %>