--- type: "movie" subType: null title: "Serpico" englishTitle: "Serpico" year: "1973" dataSource: "OMDbAPI" url: "https://www.imdb.com/title/tt0070666/" id: "tt0070666" genres: - "Biography" - "Crime" - "Drama" producer: "Sidney Lumet" duration: "130 min" onlineRating: 7.7 actors: - "Al Pacino" - "John Randolph" - "Jack Kehoe" image: "https://m.media-amazon.com/images/M/MV5BOTRkNjg3YzQtNGE3NC00M2U1LTg1ODItNmM3ZjMyOTYzYjEwXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_SX300.jpg" released: true streamingServices: premiere: "05/12/1973" watched: true lastWatched: "[[2023-12-07]]" 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/Serpico (1973)" ```   ---   ### Poster   `$= '![Image|360](' + dv.current().image + ')'`