{% extends 'blog/base.html' %} {% block content %}

{{ post.title }}

投稿者: {{ post.writer }}

作成日: {{ post.created_at }}

更新日: {{ post.updated_at }}

カテゴリ: {{ post.category }}

タグ: {% for tag in post.tags.all %}{{ tag }},{% endfor %}


{{ post.text | linebreaks | urlize }}
コメントする
{% for comment in post.comment_set.all %}
{{ comment | linebreaks | urlize }}
{% endfor %}
{% endblock %}