--- cssclass: cards Alias: ["Cinematheque", "Cinema", "Movies", "TV Shows"] Tag: ["🎥", "📺"] Date: 2022-08-15 DocType: Hierarchy: "Root2" TimeStamp: 2022-08-15 location: CollapseMetaTable: true TVShow: Name: "Sea Beyond" Season: 2 Episode: 12 Source: Internal banner: "![[img_1924.jpg]]" banner_icon: 🍿 banner_x: 0.5 --- 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 date(lastWatched) desc limit 1 ``` #### Top 10 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 file.link asc sort personalRating desc limit 10 ``` --- ### TV Shows #### Last episode watched ```dataview list without id "
TV Show's name | " + "" + this.TVShow.Name + " |
Season | " + "" + this.TVShow.Season + " |
Episode | " + "" + this.TVShow.Episode + " |
Source | " + "" + this.TVShow.Source + " |