{% load i18n %} {% load bookmark_extras %} {% for b in bookmarks %}
{% if b.author_profile_image_url %} {% else %}
{% endif %}
@{{ b.author_screen_name }} {% if b.tweet_created_at %}ยท{{ b.tweet_created_at|date:"M j, Y" }}{% endif %}
{% if b.text %}
{{ b.text|truncatechars:600|urlizetrunc:40|linebreaksbr }}
{% endif %} {% if b.summary %}
{{ b.summary }}
{% endif %} {% if b.media %}
{% for m in b.media %} {% if m.type == 'photo' %}
{{ m.alt_text|default:'' }}
{% elif m.type == 'video' or m.type == 'animated_gif' %} {% with v=m.video %} {% if m.type == 'animated_gif' %}GIF{% else %}VIDEO{% endif %} {% if v.duration_ms %}{{ v.duration_ms|ms_to_duration }}{% endif %} X {% endwith %} {% endif %} {% endfor %}
{% endif %} {% if b.has_card and b.card_data %} {% with c=b.card_data %} {% if c.title or c.description or c.image %} {% if c.image %}{% endif %}
{{ c.site|default:'' }}
{% if c.title %}
{{ c.title }}
{% endif %} {% if c.description %}
{{ c.description }}
{% endif %}
{% endif %} {% endwith %} {% endif %} {% if b.is_quote and b.quoted_data %} {% with q=b.quoted_data %} {% if q.tombstone or q.unavailable %}
{% trans "This post is unavailable." %}
{% else %} {% with qa=q.author %}
{% if qa.profile_image_url %}{% endif %} {{ qa.name|default:'' }} @{{ qa.screen_name|default:'' }}
{{ q.text|default:''|truncatechars:280|linebreaksbr }}
{% endwith %} {% endif %} {% endwith %} {% endif %}
{% if b.reply_count %}๐Ÿ’ฌ {{ b.reply_count }}{% endif %} {% if b.retweet_count %}๐Ÿ” {{ b.retweet_count }}{% endif %} {% if b.favorite_count %}โค {{ b.favorite_count }}{% endif %} {% if b.bookmark_count %}๐Ÿ”– {{ b.bookmark_count }}{% endif %} {% if b.view_count %}๐Ÿ“Š {{ b.view_count }}{% endif %} {% trans "View on X" %} โ†—
{% empty %}
{% trans "No bookmarks found" %}
{% trans "Try a different search or filter." %}
{% endfor %}