forked from Gnopps/ObsidianScripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNew case template
More file actions
33 lines (29 loc) · 768 Bytes
/
New case template
File metadata and controls
33 lines (29 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
---
tags: case,
logo: file:///C:/< YOUR PATH HERE! >/Logos/<% tp.file.title.replaceAll(" ", "%20") %>.png
---
#### General
- AE::
- CRM
- Products::
#### Info
- ERPs::
#### Todos
```tasks
not done
path includes <% tp.file.title %>
hide task count
hide start date
```
#### Activities
- [[<% tp.date.now("YYYY-MM-DD") %>]]
- [ ] Add to [CRM](https://mycorporatecrm.com/list) ⏳ <% tp.date.now("YYYY-MM-DD", 14) %>
- [ ] Add [logo](https://www.google.com/search?q=logo+fileformat:png&tbm=isch) ⏳ <% tp.date.now("YYYY-MM-DD", 14) %>
#### Meetings
```dataviewjs
let meetings = dv.pages(`"${dv.current().file.folder}" and #meeting`)
meetings = meetings.sort(k => k.date, 'desc')
for (let meeting of meetings){
dv.el("p", "![[" + meeting.file.name + "]]");
}
```