{% extends "company_base.html" %} {% block title %}{{ post.topic_title }} - {{ employee_name }} - {{ session.company_name }}{% endblock %} {% block head %} {% endblock %} {% block content %}

{{ post.topic_title or 'Untitled Post' }}

{{ post.created_at.strftime('%d.%m.%Y um %H:%M Uhr') if post.created_at else 'N/A' }} | {{ post.iterations }} Iteration{{ 's' if post.iterations != 1 else '' }} | {{ employee_name }}
{% if post.status == 'draft' %}Vorschlag{% elif post.status == 'approved' %}Bearbeitet{% elif post.status == 'published' %}Veröffentlicht{% else %}{{ post.status | capitalize }}{% endif %}

LinkedIn Post

LinkedIn Vorschau
{{ employee_name[:2] | upper if employee_name else 'UN' }}
{{ post.post_content }}
{% if post.media_items and post.media_items | length > 0 %}
{% for item in post.media_items %} {% if item.type == 'image' %} Post media {% elif item.type == 'video' %} {% endif %} {% endfor %}
{% elif post.image_url %} Post image {% endif %}
42 12 Kommentare • 3 Reposts

Aktionen

Medien ({{ post.media_items | length if post.media_items else 0 }}/3)

{% if post.media_items %} {% for item in post.media_items %}
{% if item.type == 'image' %} Media {{ loop.index }} {% elif item.type == 'video' %} {% endif %}
{{ loop.index }}
{% endfor %} {% endif %}

Bild oder Video hierher ziehen oder durchsuchen

Bilder: max. 5 MB | Videos: max. 50 MB

Details

Erstellt {{ post.created_at.strftime('%d.%m.%Y') if post.created_at else 'N/A' }}
Iterationen {{ post.iterations }}
Zeichen {{ post.post_content | length }}
{% if post.topic_title %}
Topic {{ post.topic_title }}
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}