{{ apple }}

Tohle je {{ apple }}.


{% load comments %} {% get_comment_count for apple as comment_count %}

pocet prispevku: {{ comment_count }}

{% get_comment_list for apple as comment_list %}
    {% for comment in comment_list %}
  1. {{ comment }}

    {% if comment.is_authorized %}

    author: {{ comment.user.username }} - authorized

    {% else %}

    author: {{ comment.nickname }} - unauthorized

    {% endif %}

    submit: {{ comment.submit_date }}

    {{ comment.content }}

  2. {% endfor %}

{% get_comment_form for apple with 'LO' as comment_form %} {{ comment_form }}

back

{% comment %}
{% debug %}
{% endcomment %}