{{ APP_NAME }} - ユーザー詳細

← ユーザー一覧に戻る
{% include '_nav.html' %} {% if user %}

{{ user.display_name or user.username or '(無名)' }}

@{{ user.username or '' }} ・ Instagram で開く ↗
合計 {{ summary.total_comments or 0 }} コメント 対象投稿 {{ summary.media_count or 0 }} ♡ 合計 {{ summary.like_sum or 0 }} (最大 {{ summary.like_max or 0 }}) 🔴 {{ summary.red or 0 }} 🟡 {{ summary.yellow or 0 }} {{ summary.clean or 0 }} 未判定 {{ summary.pending or 0 }} 初回 {{ (summary.first_seen or '')[:10] }} / 最終 {{ (summary.last_seen or '')[:10] }}
{% else %}
ユーザーが見つかりません (ID: {{ user_id }})
{% endif %} {% if monthly %}

📊 月別コメント数 (JST)

{% set max_count = (monthly|map(attribute='count')|max) or 1 %}
{% for m in monthly %} {% set h = ((m.count / max_count) * 100)|int %}
{{ m.count }}
{{ m.month }}
{% endfor %}
{% endif %} {% if heatmap %}

🕒 投稿時間の傾向(JST 曜日×時間)

{% set hmax = (heatmap|map(attribute='count')|max) or 1 %} {% set grid = {} %} {% for h in heatmap %}{% set _ = grid.update({(h.dow, h.hour): h.count}) %}{% endfor %} {% set dow_labels = ['日','月','火','水','木','金','土'] %} {% for hr in range(24) %}{% endfor %} {% for d in range(7) %} {% for hr in range(24) %} {% set v = grid.get((d, hr), 0) %} {% set ratio = (v / hmax) %} {% set bg = 'rgba(225, 48, 108, ' ~ (ratio * 0.9)|round(2) ~ ')' if v > 0 else 'transparent' %} {% endfor %} {% endfor %}
{{ hr }}
{{ dow_labels[d] }} {{ v if v else '' }}
{% endif %} {% if media_replied %}

🔗 コメントした投稿 (Top {{ media_replied|length }})

{% for mr in media_replied %}
@{{ mr.media_owner or '?' }} — {{ (mr.media_caption or '(キャプション無し)')[:120] }}{% if (mr.media_caption or '')|length > 120 %}…{% endif %}
このユーザーのコメント数: {{ mr.comment_count }} ・ ♡ {{ mr.like_sum or 0 }} ・ 最終: {{ (mr.last_comment_at or '')[:25] }}
{% endfor %}
{% endif %}
📊 Excel出力
{% if comments %} {% for c in comments %} {% set _card = (c.ai_card or '')|lower %}
{% if _card == 'red' %}🔴 {{ c.ai_score or 0 }} {% elif _card == 'yellow' %}🟡 {{ c.ai_score or 0 }} {% elif _card == 'clean' %}⚪ {{ c.ai_score or 0 }} {% endif %} ♡ {{ c.like_count or 0 }}{% if c.child_count %} ・ 返信 {{ c.child_count }}{% endif %} {{ c.created_at or '' }}
{{ c.text or '' }}
{% if c.ai_reason %}
💡 {{ c.ai_reason }}
{% endif %} {% if c.parent_caption %}
🔗 投稿: @{{ c.parent_owner_username or '' }} — {{ (c.parent_caption or '')[:120] }}{% if (c.parent_caption or '')|length > 120 %}…{% endif %}
{% endif %} {% if c.parent_shortcode %} {% endif %}
{% endfor %} {% else %}
このユーザーのコメントはまだ取得されていません。
{% endif %}