--- type: "movie" subType: null title: "No Country for Old Men" englishTitle: "No Country for Old Men" year: "2007" dataSource: "OMDbAPI" url: "https://www.imdb.com/title/tt0477348/" id: "tt0477348" genres: - "Crime" - "Drama" - "Thriller" producer: "Ethan Coen, Joel Coen" duration: "122 min" onlineRating: 8.2 actors: - "Tommy Lee Jones" - "Javier Bardem" - "Josh Brolin" image: "https://m.media-amazon.com/images/M/MV5BMjA5Njk3MjM4OV5BMl5BanBnXkFtZTcwMTc5MTE1MQ@@._V1_SX300.jpg" released: true streamingServices: premiere: "21/11/2007" watched: true lastWatched: "[[2023-02-24]]" personalRating: 0 CollapseMetaTable: true --- Parent:: [[@Cinematheque]] --- ```dataviewjs dv.paragraph(`> [!${dv.current().watched ? 'SUCCESS' : 'WARNING'}] ${dv.current().watched ? 'last watched on ' + dv.current().lastWatched : 'not yet watched'}`) ``` # `$= dv.current().title` `$= dv.current().watched ? '**Rating**: ' + dv.current().personalRating + ' out of 10' : ''` ```toc ``` ### Details **Genres**: `$= dv.current().genres.length === 0 ? ' - none' : dv.list(dv.current().genres)` `$= !dv.current().released ? '**Not released** The movie is not yet released.' : ''` ```dataview list without id "
Type | " + "" + this.type + " |
Online Rating | " + "" + this.onlineRating + " |
Duration | " + "" + this.duration + " |
Premiered | " + "" + this.premiere + " |
Producer | " + "" + this.producer + " |