Files
2026-05-31 10:18:48 +03:00

51 lines
1.4 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
status: stable
type: moc
tags:
- tracker
- education
- course
created: 2026-02-21
updated: 2026-02-27
aliases:
- 🎓 Учебные Курсы
---
# 🎓 Учебные Курсы
Это центральное хранилище для всех курсов в трекере обучения.
## 🚀 В Процессе
```dataview
table author as "Автор", priority as "Приоритет", tags as "Тематика"
from "05 Tools/StudyTracker/Courses"
where item_status = "in-progress" and file.name != this.file.name
sort priority desc
```
## 🔥 Высокий Приоритет (Очередь)
```dataview
table author as "Автор", tags as "Тематика"
from "05 Tools/StudyTracker/Courses"
where item_status = "backlog" and priority = "3 - High" and file.name != this.file.name
```
## 📥 Все Курсы (Очередь)
```dataview
table author as "Автор", priority as "Приоритет", tags as "Тематика"
from "05 Tools/StudyTracker/Courses"
where (item_status = "backlog" and priority != "3 - High") or item_status = "abandoned" and file.name != this.file.name
sort priority desc
```
## ✅ Завершено
```dataview
table author as "Автор", tags as "Тематика"
from "05 Tools/StudyTracker/Courses"
where item_status = "completed" and file.name != this.file.name
limit 10
```
---
## Связанные Ссылки
- [[StudyTracker|🎓 Трекер Обучения]]