Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ````tabs
- tab: Currently Reading
- ```dataview
- TABLE WITHOUT ID
- ("") as cover,
- title,
- "Author: " + author as author,
- "Genres: " + join(genres, ", ") as genre,
- "<progress value='" + (lastRead/pages*100) + "' max='100' />" as progressbar,
- lastRead + " of " + pages + " pages" + " (" + round(lastRead/pages*100) + "%)" as progress,
- "Rating: " + rating as rating,
- truncate(plot, 200) as plot
- FROM #BOOKS
- WHERE contains(status, "READING")
- FLATTEN "[[" + file.path + "|" + truncate(file.name, 27) + "]]" as title
- SORT title ASC
- ```
- tab: Want to Read
- ```dataview
- TABLE WITHOUT ID
- ("") as cover,
- title,
- "Author: " + author as author,
- "Genres: " + join(genres, ", ") as genre,
- "<progress value='" + (current/total*100) + "' max='100' />" as progressbar,
- current + " of " + total + " chapters" + " (" + round(current/total*100) + "%)" as progress,
- "Rating: " + rating as rating,
- truncate(plot, 200) as plot
- FROM #BOOKS
- WHERE contains(status, "TO READ")
- FLATTEN "[[" + file.path + "|" + truncate(file.name, 27) + "]]" as title
- SORT title ASC
- ```
- tab: Finished Reading
- ```dataview
- TABLE WITHOUT ID
- ("") as cover,
- title,
- "Author: " + author as author,
- "Genres: " + join(genres, ", ") as genre,
- "<progress value='" + (current/total*100) + "' max='100' />" as progressbar,
- current + " of " + total + " chapters" + " (" + round(current/total*100) + "%)" as progress,
- "Rating: " + rating as rating,
- truncate(plot, 200) as plot
- FROM #BOOKS
- WHERE contains(status, "FINISHED")
- FLATTEN "[[" + file.path + "|" + truncate(file.name, 27) + "]]" as title
- SORT title ASC
- ```
- tab: Abandoned Reading
- ```dataview
- TABLE WITHOUT ID
- ("") as cover,
- title,
- "Author: " + author as author,
- "Genres: " + join(genres, ", ") as genre,
- "<progress value='" + (current/total*100) + "' max='100' />" as progressbar,
- current + " of " + total + " chapters" + " (" + round(current/total*100) + "%)" as progress,
- "Rating: " + rating as rating,
- truncate(plot, 200) as plot
- FROM #BOOKS
- WHERE contains(status, "ABANDONED")
- FLATTEN "[[" + file.path + "|" + truncate(file.name, 27) + "]]" as title
- SORT title ASC
- ```
- ````
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement