{% extends 'index/base.html' %} {% block title %}{{ question.title }} - 河海大学论坛{% endblock %} {% block content %} {% import 'base/panel.html' as panel %} {% import 'base/link.html' as link %} {{ panel.ol(kind,question) }}
{{ link.user(question.author.name) }} {% if question.author.is_superuser %} (网站管理员) {% endif %}
发表于 {{ question.time.strftime('%Y-%m-%d %H:%M:%S') }}
1# {% if question.id | judge('collect') %} 取消收藏 {% else %} 加入收藏 {% endif %}
{% if question.is_markdown %} {{ question.content | safe_markdown }} {% else %} {{ question.content }} {% endif %}
{% set num = 1 %} {% for reply in question.replies %} {% set num = num + 1 %}
{{ link.user(reply.author.name) }}
发表于 {{ reply.time.strftime('%Y-%m-%d %H:%M:%S') }}
{{ num }}#
{{ reply.quote | safe_clean }} {{ reply.content | safe_clean }}
{% if current_user.is_authenticated %} 回复 {% if reply.id | judge('love') %} {% else %} {% endif %} {% endif %}
{% endfor %}
{% include 'base/replies.html' %} {% endblock %}