{% extends "base.html" %} {% block title %}Alle Posts - LinkedIn Posts{% endblock %} {% block head %} {% endblock %} {% block content %}

Alle Posts

{{ total_posts }} generierte Posts

Neuer Post
{% if error %}
Error: {{ error }}
{% endif %} {% if customers_with_posts %}
{% for item in customers_with_posts %} {% if item.posts %}
{% if item.profile_picture %} {{ item.customer.name }} {% else %} {{ item.customer.name[0] | upper }} {% endif %}

{{ item.customer.name }}

{{ item.customer.company_name or 'Kein Unternehmen' }}

{{ item.post_count }} Post{{ 's' if item.post_count != 1 else '' }}
{% endif %} {% endfor %}
{% else %}

Noch keine Posts

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

Post erstellen
{% endif %} {% endblock %}