vault backup: 2025-09-22 14:27:07

This commit is contained in:
Alex Kogutkiewicz
2025-09-22 14:27:07 -05:00
parent bc77f052fe
commit f78d5800ac
18 changed files with 258 additions and 55 deletions

View File

@@ -0,0 +1,30 @@
---
Title:
Company: "[[]]"
Address:
City:
ZIP:
State:
Phone:
Fax:
E-mail:
---
### Renewals
```dataview
TABLE without id file.link AS Renewal, DueDate, Note, Vendor
FROM ""
WHERE contains(file.tags, "renewal")
AND Vendor = this.file.link
SORT Due ASC
```
### Quotes
```dataview
TABLE without id file.link AS Renewal, DueDate, Note, Vendor
FROM ""
WHERE contains(file.tags, "quote")
AND Vendor = this.file.link
SORT Due ASC
```