14 lines
303 B
Markdown
14 lines
303 B
Markdown
|
|
```dataview
|
|
TABLE topic AS "Concept", status AS "Review Status"
|
|
FROM "10 Courses/02 - SoSe 2026/ET II"
|
|
WHERE type = "lecture" OR type = "concept"
|
|
SORT created ASC
|
|
```
|
|
|
|
```dataview
|
|
TABLE topic AS "Topic", status AS "Status"
|
|
FROM "10 Courses/02 - SoSe 2026/ET II"
|
|
WHERE type = "task"
|
|
SORT created ASC
|
|
``` |