{% from 'reply/_macro.html' import title %}
{% from 'reply/_macro.html' import body %}
{% from 'reply/_macro.html' import reply_form %}
{% from 'base/paginate.html' import footer as p_footer %}
{% set topicId = request.args.get('topicId') %}
{{ title(topicId,replies) }}
{% set num = 1 %}
{% for reply in replies.items %}
{{ body(reply) }}
{% set num = num + 1 %}
{% else %}