{% extends 'base.html' %} {% block title %}{{ object.title }}{% endblock %} {% block content %}

{{ object.title }}

作者:{{ object.author }} 日期:{{ object.pub_time }} 类别:{{ article.category }}

{{ object.content | safe }}

标签

{% for tag in object.tag.all %} {{ tag }} {% if not forloop.last %} | {% endif %} {% endfor %}

评论

{% for comment in comment_list %} {% if comment.reply == None %} {% if not forloop.first %} {% endif %} {% endif %} {% empty %} 暂无评论! {% endfor %}

发表评论

{{ comment_form.name }}
{{ comment_form.email }}
{{ comment_form.content }}
{% endblock %}