You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
124 lines
2.4 KiB
124 lines
2.4 KiB
---
|
|
|
|
cssclass: cards
|
|
Alias: ["Cinema", "Movies"]
|
|
Tag: ["Movies", "TVShows"]
|
|
Date: 2022-08-15
|
|
DocType:
|
|
Hierarchy: "Root2"
|
|
TimeStamp: 2022-08-15
|
|
location:
|
|
CollapseMetaTable: Yes
|
|
TVShow:
|
|
Name: "The Wire"
|
|
Season: 1
|
|
Episode: 1
|
|
Source: Internal
|
|
|
|
---
|
|
|
|
Parent:: [[@Lifestyle|Lifestyle]]
|
|
|
|
---
|
|
|
|
 
|
|
|
|
```button
|
|
name Save
|
|
type command
|
|
action Save current file
|
|
id Save
|
|
```
|
|
^button-CinemathequeNSave
|
|
|
|
 
|
|
|
|
# Cinematheque
|
|
|
|
 
|
|
|
|
> [!summary]+
|
|
> Summary of anything relating to movies and TV shows
|
|
|
|
 
|
|
|
|
```toc
|
|
style: number
|
|
```
|
|
|
|
 
|
|
|
|
---
|
|
|
|
 
|
|
|
|
### Movies
|
|
|
|
 
|
|
|
|
#### Last movie watched
|
|
|
|
```dataview
|
|
table without id "![](" + image + ")" as "Cover", file.link as "Title", genres as "Themes", "Rating: " + personalRating as "Rating", "IMDb Rating: " + onlineRating as "Online Rating", duration as "Duration", "Producer: " + producer as "Producer" from "03.04 Cinematheque"
|
|
where type = "movie"
|
|
sort lastWatched asc
|
|
limit 1
|
|
```
|
|
 
|
|
|
|
#### 6 favourite movies
|
|
|
|
 
|
|
|
|
```dataview
|
|
table without id "![](" + image + ")" as "Cover", file.link as "Title", genres as "Themes", "Rating: " + personalRating as "Rating", "IMDb Rating: " + onlineRating as "Online Rating", duration as "Duration", "Producer: " + producer as "Producer" from "03.04 Cinematheque"
|
|
where type = "movie"
|
|
sort personalRating desc
|
|
limit 6
|
|
```
|
|
|
|
|
|
 
|
|
|
|
---
|
|
|
|
 
|
|
|
|
### TV Shows
|
|
|
|
 
|
|
|
|
#### Last episode watched
|
|
|
|
```dataview
|
|
list without id
|
|
"<table><tbody><tr><td><a class=heading>TV Show's name</a></td>"
|
|
+
|
|
"<td><span style='color: var(--footnote);'>" + this.TVShow.Name + "</span></td></tr>"
|
|
+
|
|
"<tr><td><a class=heading>Season</a></td>"
|
|
+
|
|
"<td><span style='color: var(--footnote);'>" + this.TVShow.Season + "</span></td></tr>"
|
|
+
|
|
"<tr><td><a class=heading>Episode</a></td>"
|
|
+
|
|
"<td><span style='color: var(--footnote);'>" + this.TVShow.Episode + "</span></td></tr>"
|
|
+
|
|
"<tr><td><a class=heading>Source</a></td>"
|
|
+
|
|
"<td><span style='color: var(--footnote);'>" + this.TVShow.Source + "</span></td></tr></tbody></table>"
|
|
FROM "01.02 Home/Cinematheque"
|
|
```
|
|
 
|
|
|
|
#### 6 favourite TV shows
|
|
|
|
```dataview
|
|
table without id "![](" + image + ")" as "Cover", file.link as "Title", genres as "Themes", "Rating: " + personalRating as "Rating", "IMDb Rating: " + onlineRating as "Online Rating", duration as "Duration", "Producer: " + producer as "Producer" from "03.04 Cinematheque"
|
|
where type = "series"
|
|
sort personalRating desc
|
|
limit 6
|
|
```
|
|
|
|
 
|
|
  |