{% extends "base.html" %} {% load comments %} {% load thumbnail %} {% block content %}

{% block title %}{{ film.name_czech }} ({{ film.year }}){% endblock %}

Původní název {{ film.name_original }}
Cena za půjčení {{ film.price }} Kč
Formát {{ film.format }}
Dostupné v provozovnách {% for store in film.store.all %} {{ store }}{% if not forloop.last %}, {% endif %} {% endfor %}
{{ film.description|linebreaks }} {% for image in images %} {% thumbnail image.image 100x75 as img %} {{ film.name_czech }} {% endfor %} {% if user.is_authenticated %}

Nahrát obrázek

{% include "form.html" %}
{% endif %} {% get_comment_list for film as comments %} {% if comments %}

Komentářů: {{ comments|length }}

{% endif %} {% for comment in comments %} {% if not comment.is_removed %}
{{ comment.comment|linebreaks }}
Zadal {{ comment.user_name }} v {{ comment.submit_date|time }}
{% endif %} {% endfor%} {% get_comment_form for film as form %} {% include "comments/form.html" %} {{ request.path }}

Zpět do nabídky

{% endblock %}