{% extends 'base.html' %} {% load static %} {% block title %} LORDCHANNEL {{ film.titolo }} {% endblock title %} {% block content %}

{{ film.titolo }}

{{ film.voto }}
  • {{ film.qualità_video }}
  • {{ film.età_consigliata }}
  • Generi : {% for generi in film.genere.all %} {{ generi.genere }} {% endfor %}
  • Data di Uscita : {{ film.data_uscita }}
  • Durata: {{ film.durata }}
  • Lingua: ITA
{{ film.descrizione }}
Disponibile per i dispositivi:
  • IOS
  • Android
  • Windows
  • Smart TV
{% if request.user.is_authenticated %} {% if is_favorite %} {% else %} {% endif %} {% if watch_later %} {% else %} {% endif %} {% endif %}
    {% if request.user.is_authenticated %} {% for comments in commenti %}
  • {{ comments.utente.user }} {{ comments.data_commento }}

    {{ comments.commento }}

  • {% empty %}
  • Nessun Commento Scritto! Inzia Ora!

  • {% endfor %} {% include 'aggiungiCommento.html' %} {% else %}
  • Per poter commentare devi loggarti...

  • {% endif %}
{% if film.trailer %} {% else %} {% endif %}

Ti Potrebbero Interessare...

{% for similiar_film in you_migth_like %}

{{ similiar_film.titolo }}

{% for genres in similiar_film.genere.all %} {{ genres.genere }} {% endfor %} {{ similiar_film.voto }}
{% endfor %}
{% include 'photo.html' %} {% endblock content %} {% block javascript %} {% endblock javascript %}