Help
{% for movie in movies %}

{{ movie.title }} {% if movie.year %}({{ movie.year }}){% endif %} {% if movie.cert %}{{ movie.cert }}{% endif %}

{% if movie.plot_outline %}

{{ movie.plot_outline }}

{% endif %} {% if movie.rating and movie.votes %} {% endif %} {% if movie.genres %} {% endif %} {% if movie.languages %} {% endif %} {% if movie.directors %} {% endif %} {% if movie.cast %} {% endif %}
IMDb {{ movie.rating|floatformat:"1" }} / 10 ({{ movie.votes }} votes)
Genre {{ movie.genres|join:", " }}
Language {{ movie.languages|join:", " }}
Director {{ movie.directors|join:", " }}
Cast {{ movie.cast|join:", " }}

Showtimes

{% for cinema in movie.cinemas %} {% endfor %}
{{ cinema.name }} {{ cinema.showtimes }}
{% endfor %}

About this app

This iPhone app provides quick and easy access to movie showtimes in Singapore. Movies are sorted by IMDB ratings. Clicking on a movie title displays more info from IMDB.

Developer

Harish Mallipeddi - harish.mallipeddi@gmail.com

Colophon

This app has been built using Django, pyimdb, BeautifulSoup, and iUI