--- type: "movie" subType: null title: "Dances with Wolves" englishTitle: "Dances with Wolves" year: "1990" dataSource: "OMDbAPI" url: "https://www.imdb.com/title/tt0099348/" id: "tt0099348" plot: "Lieutenant John Dunbar, assigned to a remote western Civil War outpost, finds himself engaging with a neighbouring Sioux settlement, causing him to question his own purpose." genres: - "Adventure" - "Drama" - "Western" director: - "Kevin Costner" writer: - "Michael Blake" studio: - "N/A" duration: "181 min" onlineRating: 8 actors: - "Kevin Costner" - "Mary McDonnell" - "Graham Greene" image: "https://m.media-amazon.com/images/M/MV5BMTY3OTI5NDczN15BMl5BanBnXkFtZTcwNDA0NDY3Mw@@._V1_SX300.jpg" released: true streamingServices: premiere: "21/11/1990" watched: true lastWatched: "[[2023-12-22]]" personalRating: 8 --- 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 + "
" FROM "03.04 Cinematheque/Dances with Wolves (1990)" ```   ---   ### Poster   `$= '![Image|360](' + dv.current().image + ')'`