Skip to content

Instantly share code, notes, and snippets.

@dannberg
Last active July 14, 2024 08:17
Show Gist options
  • Save dannberg/2fc4d0b8a3e88cc24598473f4eb626ed to your computer and use it in GitHub Desktop.
Save dannberg/2fc4d0b8a3e88cc24598473f4eb626ed to your computer and use it in GitHub Desktop.
Dann Berg's People Template for Obsidian. Uses Dataview & Templater plugins. Should be saved as a Markdown file in Obsidian. See full tutorial for setup instructions: https://dannb.org/blog/2022/obsidian-people-note-template/
---
company:
location:
title:
email:
website:
aliases:
---
tags:: [[👥 People MOC]]
# [[<% tp.file.title %>]]
<% await tp.file.move("/Extras/People/" + tp.file.title) %>
## Notes
-
## Meetings
```dataview
TABLE file.cday as Created, summary AS "Summary"
FROM "Timestamps/Meetings" where contains(file.outlinks, [[]])
SORT file.cday DESC
```
@y0608
Copy link

y0608 commented Jul 14, 2024

@dannberg Upgrade on the meetings dataview:
Now you have to put the file link manually, like so:

TABLE file.cday as Created, summary AS "Summary"
FROM "Timestamps/Meetings" 
WHERE contains(file.outlinks, [[My file name]])
SORT file.cday DESC

You can use this.file.link, which makes the whole process automatic.

TABLE file.cday as Created, summary AS "Summary"
FROM "Timestamps/Meetings" 
WHERE contains(file.outlinks, this.file.link)
SORT file.cday DESC

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment