-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProject Template
56 lines (42 loc) · 1.05 KB
/
Project Template
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<%*
let title = tp.file.title
if (title.startsWith("Unbenannt")) {
title = await tp.system.prompt("Project Title","Title of project");
await tp.file.rename(title)
}
-%>
---
project: [<% title %>]
startingdate: <% tp.date.now("YYYY-MM-DD")%>
enddate: <% tp.date.now("YYYY-MM-DD")%>
topics:
type:
status: <% await tp.system.suggester(["Open", "Planning", "Generating Data", "Dissemination", "Publication", "Finished"],["Open", "Planning", "Generating Data", "Dissemination", "Publication", "Finished"])%>
active: true
dodineedtodosomething: false
tags: Project
---
collaborators:
# <% title %>
<% tp.file.cursor() %>
### Technical Notes
```dataview
TABLE without id
created as Date,
link(file.link, title) as Note
FROM #technical_note
WHERE contains(project, "<% title %>")
SORT created DESC
```
### Meetings
```dataview
TABLE without id
created as Date,
link(file.link, title) as Note
FROM #meeting
WHERE contains(project, "<% title %>")
SORT created DESC
```
---
> [!example] Local Directory
> [Directory](<file:////home/USER/FILL-ME-IN>)