migrate to bases

This commit is contained in:
Steph Ango
2025-05-24 16:03:46 -07:00
parent 831af0dd26
commit b160d8bec5
32 changed files with 588 additions and 306 deletions

View File

@@ -11,15 +11,26 @@ height:400px
## Places
```dataview
table without id
file.link as Place,
loc as Location,
type as Type,
rating as Rating
where
contains(categories,this.file.link) and
!contains(file.tags,"places/types") and
!contains(file.name,"Template")
sort last desc
```
```base
filters:
and:
- contains(property.categories, "[[Places]]")
- not(contains(file.name, "Template"))
display:
property.type: Type
property.rating: Rating
property.loc: Location
file.name: Name
views:
- type: table
name: Table
order:
- file.name
- loc
- type
- rating
sort:
- column: property.loc
direction: ASC
```