backup: 2026-04-17 11:28

This commit is contained in:
Dmitry
2026-04-17 11:28:35 +03:00
commit 21a95ec314
653 changed files with 244637 additions and 0 deletions
+47
View File
@@ -0,0 +1,47 @@
---
status: stable
type: moc
tags: [tracker, education, course]
created: 2026-02-21
updated: 2026-02-27
title: 🎓 Учебные Курсы
---
# 🎓 Учебные Курсы
Это центральное хранилище для всех курсов в трекере обучения.
## 🚀 В Процессе
```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|🎓 Трекер Обучения]]