vault backup: 2024-04-23 22:38:34
This commit is contained in:
21
6.Templates/Análisis.md
Normal file
21
6.Templates/Análisis.md
Normal file
@@ -0,0 +1,21 @@
|
||||
---
|
||||
date: <% tp.file.creation_date() %>
|
||||
type:
|
||||
company:
|
||||
Daily_note: [[<% tp.date.now("YYYY/MM-MMMM/DD-dddd") %>]]
|
||||
meeting_note:
|
||||
---
|
||||
|
||||
## Request asociada:
|
||||
|
||||
|
||||
- <% tp.file.cursor() %>
|
||||
|
||||
## Analisis
|
||||
|
||||
>[!info] Datos:
|
||||
|
||||
|
||||
## Solución propuesta
|
||||
|
||||
>[!success] Propuesta:
|
||||
@@ -40,13 +40,13 @@ tags:
|
||||
# ✅ Tareas
|
||||
|
||||
```dataview
|
||||
TASK FROM "1.Daily_Notes" WHERE !completed AND !checked AND !due AND file.cday != this.file.cday and file.name ="Daily MOC" GROUP BY file.link
|
||||
TASK FROM "📆 Daily_MOC" WHERE !completed AND !checked AND !due AND file.cday != this.file.cday
|
||||
```
|
||||
|
||||
## ✅ To Do
|
||||
|
||||
- - -
|
||||
- [ ]
|
||||
- [ ] [🍅:: 0/4]
|
||||
|
||||
- - -
|
||||
|
||||
@@ -80,7 +80,6 @@ filter: today | overdue
|
||||
sorting:
|
||||
- date
|
||||
- priority
|
||||
group: true
|
||||
```
|
||||
|
||||
|
||||
@@ -97,7 +96,6 @@ filter: tomorrow | overdue
|
||||
sorting:
|
||||
- date
|
||||
- priority
|
||||
group: true
|
||||
```
|
||||
|
||||
- - -
|
||||
@@ -113,7 +111,6 @@ filter: next 5 days | overdue
|
||||
sorting:
|
||||
- date
|
||||
- priority
|
||||
group: true
|
||||
```
|
||||
|
||||
- - -
|
||||
@@ -129,7 +126,6 @@ filter: next week | overdue
|
||||
sorting:
|
||||
- date
|
||||
- priority
|
||||
group: true
|
||||
```
|
||||
|
||||
- - -
|
||||
@@ -170,6 +166,12 @@ TASK FROM "1.Daily_Notes" WHERE !completed AND !checked AND !due AND file.cday !
|
||||
<% tp.web.daily_quote() %>
|
||||
|
||||
---
|
||||
# ✅ Tareas Completadas hoy
|
||||
|
||||
```dataview
|
||||
TASK FROM "1.Daily_Notes" WHERE completed AND checked AND completion = this.file.cday SORT due asc GROUP BY file.link
|
||||
```
|
||||
---
|
||||
|
||||
<< [[<% fileDate = moment(tp.file.title, 'DD-dddd').subtract(1, 'd').format("[1.Daily_Notes]/YYYY/MM-MMMM/DD-dddd") %>|Yesterday]] | [[<% fileDate = moment(tp.file.title, 'DD-dddd').add(1, 'd').format("[1.Daily_Notes]/YYYY/MM-MMMM/DD-dddd") %>|Tomorrow]] >>
|
||||
|
||||
<< [[<% fileDate = moment(tp.file.title, 'DD-dddd').subtract(1, 'd').format("[1.Daily_Notes]/YYYY/MM-MMMM/DD-dddd") %>|Yesterday]] | [[<% fileDate = moment(tp.file.title, 'DD-dddd').add(1, 'd').format("[1.Daily_Notes]/YYYY/MM-MMMM/DD-dddd") %>|Tomorrow]] >>
|
||||
@@ -4,11 +4,18 @@ type: meeting
|
||||
company:
|
||||
summary:
|
||||
start: <% tp.file.creation_date("HH") %>h<% tp.file.creation_date("mm") %>m
|
||||
end:
|
||||
end:
|
||||
tags:
|
||||
- Meetings_MOC
|
||||
- People_MOC
|
||||
---
|
||||
tags: [[🗣 Meetings_MOC]], [[👥 Pepople_MOC]]
|
||||
tags: [[🗣 Meetings_MOC]], [[👥 People_MOC]]
|
||||
Daily note: [[<% tp.date.now("YYYY/MM-MMMM/DD-dddd") %>]]
|
||||
<% await tp.file.move("/2.Notas_Reunión/" + tp.date.now("YYYY-MM-DD") + " " + tp.file.title) %>
|
||||
|
||||
**Categoría:**
|
||||
|
||||
`INPUT[inlineSelect(option(Work), option(Personal), option(Creative), option(Fictional), option(Notable)):Category]`
|
||||
# [[<% tp.date.now("YYYY-MM-DD") + " " + tp.file.title %>]]
|
||||
|
||||
## 📆 Fecha
|
||||
@@ -34,4 +41,4 @@ Daily note: [[<% tp.date.now("YYYY/MM-MMMM/DD-dddd") %>]]
|
||||
|
||||
## ✅ Próximos pasos
|
||||
|
||||
-
|
||||
-
|
||||
|
||||
@@ -5,18 +5,29 @@ title:
|
||||
email:
|
||||
website:
|
||||
aliases:
|
||||
Category:
|
||||
- Notable
|
||||
tags:
|
||||
- MOC
|
||||
- People_MOC
|
||||
---
|
||||
tags:: [[People MOC]]
|
||||
|
||||
# <% tp.file.title %>
|
||||
<% await tp.file.move("/7.Participantes/" + tp.file.title) %>
|
||||
|
||||
|
||||
**Categoría:**
|
||||
|
||||
`INPUT[inlineSelect(option(Work), option(Personal), option(Creative), option(Fictional), option(Notable)):Category]`
|
||||
|
||||
|
||||
## Notes
|
||||
-
|
||||
|
||||
## Meetings
|
||||
```dataview
|
||||
TABLE file.cday as Created, summary AS "Summary"
|
||||
TABLE file.cday as Created, summary AS "Summary", category AS "Category"
|
||||
FROM "2.Notas_Reunión" where contains(file.outlinks, [[<% tp.file.title %>]])
|
||||
SORT file.cday DESC
|
||||
```
|
||||
```
|
||||
|
||||
29
6.Templates/RequestResponse_Doc.md
Normal file
29
6.Templates/RequestResponse_Doc.md
Normal file
@@ -0,0 +1,29 @@
|
||||
---
|
||||
date: <% tp.file.creation_date() %>
|
||||
type:
|
||||
company:
|
||||
Daily_note: [[<% tp.date.now("YYYY/MM-MMMM/DD-dddd") %>]]
|
||||
meeting_note:
|
||||
---
|
||||
|
||||
## Request asociada:
|
||||
|
||||
|
||||
- <% tp.file.cursor() %>
|
||||
|
||||
|
||||
## Datos a fecha de <% tp.file.creation_date() %>
|
||||
|
||||
|
||||
## Errores detectados
|
||||
|
||||
|
||||
|
||||
## Propuesta de solución
|
||||
|
||||
|
||||
|
||||
|
||||
## Propuesta alternativa
|
||||
|
||||
|
||||
Reference in New Issue
Block a user