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.

103 lines
2.2 KiB

11 months ago
---
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
"<table><tbody><tr><td><a class=heading>Type</a></td>"
+
"<td><span style='color: var(--footnote);'>" + this.type + "</span></td></tr>"
+
"<tr><td><a class=heading>Online Rating</a></td>"
+
"<td><span style='color: var(--footnote);'>" + this.onlineRating + "</span></td></tr>"
+
"<tr><td><a class=heading>Duration</a></td>"
+
"<td><span style='color: var(--footnote);'>" + this.duration + "</span></td></tr>"
+
"<tr><td><a class=heading>Premiered</a></td>"
+
"<td><span style='color: var(--footnote);'>" + this.premiere + "</span></td></tr>"
+
"<tr><td><a class=heading>Producer</a></td>"
+
"<td><span style='color: var(--footnote);'>" + this.producer + "</span></td></tr></tbody></table>"
FROM "03.04 Cinematheque/Dances with Wolves (1990)"
```
&emsp;
---
&emsp;
### Poster
&emsp;
`$= '![Image|360](' + dv.current().image + ')'`