{% from "partials/header.html" import header with context %} {{ app_name }} v{{ app_version }} - Queue Preview {{ header('queue') }}

Queue Preview

Curated Queue status and post management. Shows all approved posts and their export eligibility.

Approved Posts

{% if posts %}
{% for item in posts %} {% endfor %}
Author Content Score Status Details
{{ item.post.author_display_name or item.post.author_username or "Unknown" }}
@{{ item.post.author_username or "unknown" }}
{% if item.post.content %} {{ item.post.content[:100] }}{% if item.post.content|length > 100 %}...{% endif %} {% else %} No content {% endif %}
{% if item.post.hashtags and item.post.hashtags|length > 0 %}
{% for hashtag in item.post.hashtags[:3] %} #{{ hashtag }} {% if not loop.last %}ยท{% endif %} {% endfor %} {% if item.post.hashtags|length > 3 %} +{{ item.post.hashtags|length - 3 }} {% endif %}
{% endif %} {% if item.post.media_attachments and item.post.media_attachments|length > 0 %}
{% for attachment in item.post.media_attachments[:3] %}
{% if attachment.url or attachment.preview_url %} Post attachment {% else %}
{% endif %}
{% endfor %} {% if item.post.media_attachments|length > 3 %}
+{{ item.post.media_attachments|length - 3 }}
{% endif %}
{% endif %}
{{ item.post.spam_score }}
{% if item.post.media_attachments and item.post.media_attachments|length > 0 %}
{{ item.post.media_attachments|length }}
{% endif %}
{{ item.queue_status|title }} {% if item.queue_status == 'error' and item.error_reason %}
{{ item.error_reason }}
{% endif %}
{% if item.queue_status == 'reserved' and item.reserved_at %}
{{ item.reserved_at.strftime('%H:%M:%S') }}
{% elif item.queue_status == 'error' and item.errored_at %}
{{ item.errored_at.strftime('%Y-%m-%d %H:%M') }}
{% elif item.queue_status == 'pending' %}
Eligible
{% elif not item.eligible %}
{{ item.exclusion_reason }}
{% endif %}
{% if total_pages > 1 %}
Showing {{ (page - 1) * page_size + 1 }}โ€“{{ [page * page_size, total_filtered_count] | min }} of {{ total_filtered_count }}
{% if page > 1 %} โ† Prev {% endif %} Page {{ page }} of {{ total_pages }} {% if page < total_pages %} Next โ†’ {% endif %}
{% endif %} {% else %}

No approved posts yet.

{% endif %}