{% extends "./layout.html" %} {% block sectionClasses %}movie_page{% endblock %} {% block meta_title %}Spincast Quick Start{% endblock %} {% block meta_description %}Spincast Quick Start Application{% endblock %} {% block scripts %} {% endblock %} {% block body %}

(informations from omdbapi.com)

Enter a movie title (english) :
{% if movieInfo is not empty %}
Title : {{movieInfo.Title | default(movieName)}}
Year : {{movieInfo.Year | default("N/A")}}
Director : {{movieInfo.Director | default("N/A")}}
Rating : {{movieInfo.imdbRating is not empty ? movieInfo.imdbRating + "/10" : "N/A"}}
Plot : {{movieInfo.Plot | default("N/A")}}
{% endif %}
{% endblock %}