{% extends "base.html" %} {% block title %}özgürsözlük - {{ topic.title }}{% endblock %} {% block main %}

{{ topic.title }}

{% if p > 1 %} previous {% if p < topic.pagecount %}/{% endif %} {% endif %} {% if p < topic.pagecount %} next {% endif %} {% if topic.pagecount > 1 %} - last page {% endif %}
{% for entry in topic.entrys %}
{{ entry.content|safe }}
{% if request.cookies.get('display_author_nickname') == 'True' %} {{ entry.author }} - {% endif %} {{ entry.datetime }}
{% endfor %}
{% endblock %}