--- type: "movie" subType: null title: "The Color of Money" englishTitle: "The Color of Money" year: "1986" dataSource: "OMDbAPI" url: "https://www.imdb.com/title/tt0090863/" id: "tt0090863" plot: "Fast Eddie Felson teaches a cocky but immensely talented protégé the ropes of pool hustling, which in turn inspires him to make an unlikely comeback." genres: - "Drama" - "Sport" director: - "Martin Scorsese" writer: - "Walter Tevis" - "Richard Price" studio: - "N/A" duration: "119 min" onlineRating: 7 actors: - "Paul Newman" - "Tom Cruise" - "Mary Elizabeth Mastrantonio" image: "https://m.media-amazon.com/images/M/MV5BMGUxNDNkZGQtMWEyOS00MzI0LWFmMTUtMmEyNzk1YzBiYzljXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_SX300.jpg" released: true streamingServices: premiere: "17/10/1986" watched: true lastWatched: "[[2024-01-17]]" personalRating: 0 --- 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 + " |