{% set owner_url = url({'for':'home.user.show','id':comment.owner.id}) %} {% set delete_url = url({'for':'home.comment.delete','id':comment.id}) %} {% if comment.parent_id == 0 %}
{{ comment.content }}
{% endif %} {% if comment.parent_id > 0 %}
{{ comment.owner.name }}
{{ comment.owner.name }} {% if comment.to_user.id is defined %} {% set to_user_url = url({'for':'home.user.show','id':comment.to_user.id}) %} 回复 {{ comment.to_user.name }} {% endif %}
{{ comment.content }}
{% endif %}