{% extends "base.html" %} {% block title %}Meine Posts - LinkedIn Posts{% endblock %} {% macro render_post_card(post) %}

{{ post.topic_title or 'Untitled' }}

{{ post.created_at.strftime('%d.%m.%Y') if post.created_at else 'N/A' }}
{% if post.post_content %}

{{ post.post_content[:150] }}{% if post.post_content | length > 150 %}...{% endif %}

{% endif %}
{% endmacro %} {% block head %} {% endblock %} {% block content %}

Meine Posts

Ziehe Posts zwischen den Spalten um den Status zu ändern

{% if archived_count and archived_count > 0 %} Archiv {{ archived_count }} {% endif %} Neuer Post
{% if error %}
Error: {{ error }}
{% endif %}

Vorschlag

{{ posts | selectattr('status', 'equalto', 'draft') | list | length }}
{% for post in posts if post.status == 'draft' %} {{ render_post_card(post) }} {% else %}

Keine Vorschläge

{% endfor %}

Bearbeitet

{{ posts | selectattr('status', 'equalto', 'approved') | list | length }}
{% for post in posts if post.status == 'approved' %} {{ render_post_card(post) }} {% else %}

Keine bearbeiteten Posts

{% endfor %}

Freigegeben

{{ posts | selectattr('status', 'equalto', 'ready') | list | length }}
{% for post in posts if post.status == 'ready' %} {{ render_post_card(post) }} {% else %}

Keine freigegebenen Posts

{% endfor %}
{% if not posts %}
{% if archived_count and archived_count > 0 %}

Alle Posts veröffentlicht

Keine aktiven Posts. {{ archived_count }} Post{{ 's' if archived_count != 1 else '' }} im Archiv.

Archiv ansehen {% else %}

Noch keine Posts

Erstelle deinen ersten LinkedIn Post mit KI-Unterstützung.

{% endif %} Post erstellen
{% endif %} {% endblock %} {% block scripts %} {% endblock %}