--- type: "movie" title: "All of Us Strangers" englishTitle: "All of Us Strangers" year: "2023" dataSource: "OMDbAPI" url: "https://m.imdb.com/title/tt21192142/" id: "tt21192142" genres: - "Drama" - "Fantasy" - "Romance" producer: "Andrew Haigh" duration: "105 min" onlineRating: 7.7 actors: - "Andrew Scott" - "Paul Mescal" - "Carter John Grout" image: "https://m.media-amazon.com/images/M/MV5BZmYzMjMzN2EtMGYwNi00ODc3LWI3YTctMjA5YjI1MGFkYTlhXkEyXkFqcGdeQXVyMDM2NDM2MQ@@._V1_FMjpg_UX1000_.jpg" released: true premiere: "26/01/2024" watched: true lastWatched: "[[2024-05-23]]" personalRating: 6.5 CollapseMetaTable: true --- 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/All of Us Strangers (2023)" ```   ---   ### Poster   `$= '![Image|360](' + dv.current().image + ')'`