{% extends "base.html" %} {% block title %}ブックマーク - 画像収集クローラー{% endblock %} {% block nav %} {% endblock %} {% block content %}

ブックマーク

{% if message %}
{{ message }}
{% endif %}

ブックマークを追加

URLを追加すると、開かずにページタイトルと直リンクの動画(mp4/mov)を自動で検出します。「開く」はシークレット/プライベートウィンドウで開きます。

{% for b in bookmarks %}
{{ b.url }}
{% if b.note %}
{{ b.note }}
{% endif %}
追加: {{ b.created_at.strftime('%Y-%m-%d %H:%M') }}
{% if b.video_url %}
{% if b.video_file_path and file_exists(b.video_file_path) %} 動画あり ({{ format_bytes(b.video_file_size) }})
{% elif b.video_error %} 動画取得失敗: {{ b.video_error }}
{% else %} 動画を検出(未取得)
{% endif %}
{% endif %}
開く
{% else %}

ブックマークはまだありません。

{% endfor %}
{% endblock %}