{{ object }}

Tohle je {{ object }}.


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

pocet prispevku: {{ comment_count }}

{% get_comment_list for object 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 }}

    reply

  2. {% endfor %}

pridat komentar

back

{% comment %}
{% get_comment_form for object with 'LO' as comment_form %} {{ comment_form }}
{% debug %}
{% endcomment %}