8 lines
165 B
Markdown
8 lines
165 B
Markdown
|
|
```dataview
|
|
TABLE topic AS "Concept", status AS "Review Status"
|
|
FROM "10 Courses/02 - SoSe 2026/AT"
|
|
WHERE type = "lecture" OR type = "concept"
|
|
SORT created ASC
|
|
```
|