Files
SecondBrain/.stversions/99 System/Archive/04 Tools/StudyTracker/StudyTracker~20260603-140757.md
T
2026-06-03 14:09:18 +03:00

58 lines
1.6 KiB
Markdown
Raw 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: database
tags:
- tracker
- education
created: 2026-02-19
updated: 2026-04-17
aliases:
- 🎓 Трекер Обучения
---
# 🎓 Трекер Обучения
Это центральный узел для управления учебными материалами.
## 📂 Структура
- [[Books|📚 Библиотека (Книги)]]
- [[Courses|🎓 Учебные Курсы]]
## 🚀 В Процессе
```dataview
table author as "Автор", priority as "Приоритет", category as "Категория", tags as "Тематика"
from "04 Tools/StudyTracker"
where item_status = "in-progress"
sort priority desc
```
## 🔥 Высокий Приоритет (Очередь)
```dataview
table author as "Автор", category as "Категория", tags as "Тематика"
from "04 Tools/StudyTracker"
where (item_status = "backlog" or item_status = "in-progress") and priority = "3 - High"
```
## 📥 Все Материалы (Очередь)
```dataview
table author as "Автор", priority as "Приоритет", category as "Категория", tags as "Тематика"
from "04 Tools/StudyTracker"
where (item_status = "backlog" and priority != "3 - High") or item_status = "abandoned"
sort priority desc
```
## ✅ Завершено
```dataview
table author as "Автор", category as "Категория", tags as "Тематика"
from "04 Tools/StudyTracker"
where item_status = "completed"
limit 10
```
---
## Общий список
%% Begin Waypoint %%
- **[[Books]]**
- **[[Courses]]**
%% End Waypoint %%