migrate to bases
This commit is contained in:
@@ -2,13 +2,22 @@
|
||||
tags:
|
||||
- categories
|
||||
---
|
||||
```dataview
|
||||
table without id
|
||||
file.link as Title,
|
||||
status as Status,
|
||||
published as Published
|
||||
where
|
||||
contains(categories,this.file.link) and
|
||||
!contains(file.name,"Template")
|
||||
sort published desc
|
||||
|
||||
```base
|
||||
display:
|
||||
file.name: Title
|
||||
property.status: Status
|
||||
property.published: Published
|
||||
views:
|
||||
- type: table
|
||||
name: Table
|
||||
filters:
|
||||
and:
|
||||
- contains(categories, concat("[[", this.file.name, "]]"))
|
||||
- not(contains(file.name, "Template"))
|
||||
order:
|
||||
- file.name
|
||||
- status
|
||||
- published
|
||||
|
||||
```
|
||||
Reference in New Issue
Block a user