{% extends "admin/base.html" %} {% block title %}コメント - Focomy 管理画面{% endblock %} {% block header_title %}コメント{% endblock %} {% block content %} {% if message %}
{{ message }}
{% endif %}
コメント管理
{% if comments %}
{% for comment in comments %} {% endfor %}
投稿者 コメント 投稿 ステータス 日付 操作
{{ comment.author_name }}
{{ comment.author_email }}
{{ comment.content[:100] }}{% if comment.content|length > 100 %}...{% endif %}
{% if comment.post_title %} {{ comment.post_title[:30] }}{% if comment.post_title|length > 30 %}...{% endif %} {% else %} - {% endif %} {% if comment.status == 'approved' %}承認済み{% elif comment.status == 'pending' %}承認待ち{% elif comment.status == 'spam' %}スパム{% elif comment.status == 'rejected' %}拒否{% else %}{{ comment.status }}{% endif %} {{ comment.created_at[:10] }}
{% if comment.status != 'approved' %}
{% endif %} {% if comment.status != 'rejected' %}
{% endif %} {% if comment.status != 'spam' %}
{% endif %}
{% else %}

コメントがありません。

{% endif %}
{% endblock %}