{% extends "onboarding/base.html" %} {% block title %}Posts kategorisieren{% endblock %} {% block content %}

Posts kategorisieren

Wir ordnen deine Posts automatisch den Post-Typen zu.

{% if error %}
{{ error }}
{% endif %}

Kategorisierung

{% if classification_complete %} Abgeschlossen {% else %} Ausstehend {% endif %}
{{ classified_count }}/{{ total_posts }} Posts {{ progress }}%
{% if not classification_complete %} {% endif %}

Verteilung nach Post-Typ

{% for post_type in post_types %}
{{ post_type.name }} {{ post_type.count }} Posts
{% endfor %} {% if uncategorized_count > 0 %}
Nicht kategorisiert {{ uncategorized_count }} Posts
{% endif %}
{% if uncategorized_posts and uncategorized_posts|length > 0 %}

Manuelle Nachkategorisierung

Diese Posts konnten nicht automatisch kategorisiert werden:

{% for post in uncategorized_posts[:5] %}

{{ post.post_text[:300] }}{% if post.post_text|length > 300 %}...{% endif %}

{% for pt in post_types %} {% endfor %}
{% endfor %}
{% endif %}
Zurück
{% endblock %} {% block scripts %} {% endblock %}