{% extends "shared/core/base.html" %} {% load static %} {% load tz %} {% block title %} {{ post.title }} {% endblock title %} {% block head %} {% endblock head %} {% block content %}

{{ post.title }}

{% with post.author.userprofile_set.first as authorprofile %} {{ post.author.first_name }}'s Avatar {% endwith %} {{ post.author.first_name }} {{ post.author.last_name }} {% if request.LANGUAGE_CODE == 'ja' %}投稿カテゴリー:{% else %}posted in{% endif %} {{ post.category.name }} {% if request.LANGUAGE_CODE == 'ja' %}投稿日:{% else %}on{% endif %} {% localtime on %}{{ post.date | date:"M d, Y" }}{% endlocaltime %}
{{ post.first_paragraph | safe }}
{{ post.title }}
{{ post.body | safe }}

{% if request.LANGUAGE_CODE == 'ja' %}コメント{% else %}Comments{% endif %}

{% for comment in post.comments.all %} {% if not comment.parent %} {% include 'partials/_comment.html' with comment=comment %} {% endif %} {% endfor %} {% if post.comments.all|length == 0 %}

{% if request.LANGUAGE_CODE == 'ja' %}コメントはありません。{% else %}No comments yet.{% endif %}

{% endif %}
{% endblock content %} {% block scripts %} {% endblock scripts %}