vault backup: 2026-06-03 14:09:18

This commit is contained in:
Dmitry
2026-06-03 14:09:18 +03:00
parent 1264dc9c6f
commit d8fb37c1e5
141 changed files with 8521 additions and 34 deletions
@@ -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|🎓 Трекер Обучения]]