{% load movie %}
film_actors
template: movies/movie/actors.html
usage: {% film_actors film [number_of_actors] %}
description: Displays most popular actors of film.
film_directors
template: movies/movie/directors.html
usage: {%film_directors film %}
description: Displays film directors
film_description
template: movies/movie/description.html
usage: {% film_description film n_words [b_edit] %}
description: Displays movie description truncated to specified number of words. If b_edit is True renders link to inplace edit
film_related
template: movies/movie/related.html
usage: {% film_related film %}
description: Displays 6 movies related to film
film_similar_ratings
template: movies/movie/ratings.html
usage: {% film_similar_ratings film user %}
description: Displays widget with ratings of film rated by users similar to specified user
film_friends_ratings
template: movies/movie/ratings.html
usage: {% film_friends_ratings film user %}
description: Displays widget with ratings of film rated by user friends
film_score
template: movies/movie/score.html
usage: {% film_score film user %}
description: Renders film average and guess_rating scores
film_featured_posts
template: movies/movie/featured_reviews.html
usage: {% film_featured_posts film %}
description: Renders two featured reviews for film
film_cinema_screenings
template: movies/movie/cinema_screenings.html
usage: {% film_cinema_screenings film user %}
description: Displays cinema screenings for film (in user location)
film_tv_screening
template: movies/movie/tv_screenings.html
usage: {% film_tv_screenings film user %}
description: Displays tv screenings for film (for user's tv channels)
rating_progress
template: movies/rating/rating_progress.html
usage: {% rating_progress user %}
description: Displays rating progress widget for user
film_ratings_form
template: movies/rating/ratings_form.html
usage: {% film_ratings_form film user %}
description: Displays rating form for specified film and user
top_recommendations_cinema
template: movies/movie_list.html
usage: {% top_recommendations_cinema %}
description:
most_popular_films
template: movies/movie_list.html
usage: {% most_popular_films %}
description:
random_film_to_rate
template: movies/rating/single_film_form.html
usage: {% random_film_to_rate %}
description:
short_reviews
template: widgets/short_reviews.html
usage: {%default limit is set to 10 %}
description: param: 'films', 'genre' or none
'films' works with argument, where argument is list of films
'genre' works without argument. Genre is taken from page context
if no param is setup, then are taken featured activities from last 30 days.