--- type: "movie" subType: null title: "American Psycho" englishTitle: "American Psycho" year: "2000" dataSource: "OMDbAPI" url: "https://m.imdb.com/title/tt0144084/" id: "tt0144084" genres: - "Crime" - "Drama" - "Horror" producer: "Mary Harron" duration: "102 min" onlineRating: 7.6 actors: - "Christian Bale" - "Justin Theroux" - "Josh Lucas" image: "https://2.bp.blogspot.com/-LuWGt09M9vA/V12Yo2p3IZI/AAAAAAAAZQs/O7GYvPMBkq0uTzgBIdiBvi1Ox3Kq8f-fACLcB/s1600/American-Psycho-Cover-1.jpg" released: true streamingServices: premiere: "21/04/2000" watched: true lastWatched: "[[2024-05-22]]" personalRating: 7.5 CollapseMetaTable: true --- Parent:: [[@Cinematheque]], [[American Psycho]] --- ```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/American Psycho (2000)" ```   ---   ### Poster   `$= '![Image|360](' + dv.current().image + ')'`