Files
SecondBrain/04 Tools/StudyTracker/Books/Books.sync-conflict-20260603-110335-23DMR5O.md
T
2026-06-03 14:09:18 +03:00

48 lines
1.4 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: moc
tags: [tracker, education, book]
created: 2026-02-21
updated: 2026-02-27
title: 📚 Библиотека (Книги)
---
# 📚 Библиотека (Книги)
Это центральное хранилище для всех книг в трекере обучения.
## 📖 В Процессе
```dataview
table author as "Автор", priority as "Приоритет", tags as "Тематика"
from "05 Tools/StudyTracker/Books"
where item_status = "in-progress" and file.name != this.file.name
sort priority desc
```
## 🔥 Высокий Приоритет (Очередь)
```dataview
table author as "Автор", tags as "Тематика"
from "05 Tools/StudyTracker/Books"
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/Books"
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/Books"
where item_status = "completed" and file.name != this.file.name
limit 10
```
---
## Связанные Ссылки
- [[StudyTracker|🎓 Трекер Обучения]]