{% extends "base.html" %} {% block title %}{{ post.topic_title }} - Post Details{% endblock %} {% block head %} {% endblock %} {% block content %}
Zurück zu allen Posts

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

{{ customer.name }} | {{ 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 '' }}
{{ post.status | capitalize }} {% if final_feedback %} Score: {{ final_feedback.overall_score }}/100 {% endif %}

Finaler Post

{% if profile_picture_url %} {{ customer.name }} {% else %} {{ customer.name[:2] | upper if customer.name else 'UN' }} {% endif %}
...mehr anzeigen
42 12 Kommentare • 3 Reposts
{% if final_feedback and final_feedback.scores %}

Score-Aufschlüsselung

Authentizität & Stil {{ final_feedback.scores.authenticity_and_style }}/40
Content-Qualität {{ final_feedback.scores.content_quality }}/35
Technische Umsetzung {{ final_feedback.scores.technical_execution }}/25
Gesamt {{ final_feedback.overall_score }}/100
{% endif %} {% if final_feedback %}

Finales Feedback

{{ final_feedback.feedback }}

{% if final_feedback.strengths %}
Stärken
    {% for s in final_feedback.strengths %}
  • + {{ s }}
  • {% endfor %}
{% endif %}
{% endif %}

Aktionen

Neuen Post erstellen
{% if post.writer_versions and post.writer_versions | length > 0 %}

Iterationen

1 / {{ post.writer_versions | length }}
{% for i in range(post.writer_versions | length) %}
Version {{ i + 1 }} {% if post.critic_feedback and i < post.critic_feedback | length %}
Score: {{ post.critic_feedback[i].overall_score }}/100 {% if post.critic_feedback[i].approved %} Approved {% endif %}
{% endif %}
{{ post.writer_versions[i] }}
{% if post.critic_feedback and i < post.critic_feedback | length %} {% set fb = post.critic_feedback[i] %}

Critic Feedback

{{ fb.feedback }}

{% if fb.strengths %}
Stärken
    {% for s in fb.strengths %}
  • + {{ s }}
  • {% endfor %}
{% endif %} {% if fb.improvements %}
Verbesserungen
    {% for imp in fb.improvements %}
  • - {{ imp }}
  • {% endfor %}
{% endif %}
{% endif %}
{% endfor %}
{% endif %} {% if reference_posts %}

Referenz-Posts für KI ({{ reference_posts | length }} Posts)

Diese echten LinkedIn-Posts wurden der KI als Stil-Referenz gegeben:

{% for ref_post in reference_posts %}
Beispiel {{ loop.index }} {{ ref_post | length }} Zeichen
{{ ref_post[:500] }}{% if ref_post | length > 500 %}...{% endif %}
{% endfor %}
{% endif %} {% if profile_analysis %}

Profil-Analyse

{% if profile_analysis.writing_style %}

Schreibstil

Perspektive {{ profile_analysis.writing_style.perspective or 'N/A' }}
Ansprache {{ profile_analysis.writing_style.form_of_address or 'N/A' }}
Tonalität {{ profile_analysis.writing_style.tone or 'N/A' }}
{% if profile_analysis.writing_style.average_word_count %}
Ø Wortanzahl {{ profile_analysis.writing_style.average_word_count }} Wörter
{% endif %}
{% endif %} {% if profile_analysis.linguistic_fingerprint %}

Sprachlicher Fingerabdruck

Energie-Level
{{ profile_analysis.linguistic_fingerprint.energy_level or 'N/A' }}/10
{% if profile_analysis.linguistic_fingerprint.formality_level %}
Formalität
{{ profile_analysis.linguistic_fingerprint.formality_level }}/10
{% endif %}
{% if profile_analysis.linguistic_fingerprint.signature_phrases %}
Signature Phrases
{% for phrase in profile_analysis.linguistic_fingerprint.signature_phrases %} {{ phrase }} {% endfor %}
{% endif %}
{% endif %} {% if profile_analysis.phrase_library %}

Phrasen-Bibliothek

{% if profile_analysis.phrase_library.hook_phrases %}
Hook-Phrasen
{% for hook in profile_analysis.phrase_library.hook_phrases[:4] %}

"{{ hook }}"

{% endfor %}
{% endif %} {% if profile_analysis.phrase_library.emotional_expressions %}
Emotionale Ausdrücke
{% for expr in profile_analysis.phrase_library.emotional_expressions[:6] %} {{ expr }} {% endfor %}
{% endif %} {% if profile_analysis.phrase_library.cta_phrases %}
CTA-Phrasen
{% for cta in profile_analysis.phrase_library.cta_phrases[:3] %}

"{{ cta }}"

{% endfor %}
{% endif %}
{% endif %} {% if profile_analysis.tone_analysis %}

Ton-Analyse

{% if profile_analysis.tone_analysis.primary_tone %}
Primärer Ton {{ profile_analysis.tone_analysis.primary_tone }}
{% endif %} {% if profile_analysis.tone_analysis.secondary_tones %}
Sekundäre Töne {{ profile_analysis.tone_analysis.secondary_tones | join(', ') }}
{% endif %}
{% endif %} {% if profile_analysis.audience_insights %}

Zielgruppen-Insights

{% if profile_analysis.audience_insights.industry_context %}
Branche {{ profile_analysis.audience_insights.industry_context }}
{% endif %} {% if profile_analysis.audience_insights.target_audience %}
Zielgruppe {{ profile_analysis.audience_insights.target_audience }}
{% endif %}
{% if profile_analysis.audience_insights.pain_points_addressed %}
Adressierte Pain Points
{% for pain in profile_analysis.audience_insights.pain_points_addressed %} {{ pain }} {% endfor %}
{% endif %}
{% endif %}
{% endif %} {% if post_type_analysis %}

Post-Typ Analyse

{% if post_type %} {{ post_type.name }} {% endif %}
{% if post_type_analysis.post_count %}

Basierend auf {{ post_type_analysis.post_count }} analysierten Posts dieses Typs

{% endif %} {% if post_type_analysis.structure_patterns %}

Struktur-Muster

{% if post_type_analysis.structure_patterns.typical_structure %}
Typische Struktur {{ post_type_analysis.structure_patterns.typical_structure }}
{% endif %} {% if post_type_analysis.structure_patterns.paragraph_count %}
Absätze {{ post_type_analysis.structure_patterns.paragraph_count }}
{% endif %} {% if post_type_analysis.structure_patterns.paragraph_length %}
Absatzlänge {{ post_type_analysis.structure_patterns.paragraph_length }}
{% endif %} {% if post_type_analysis.structure_patterns.uses_lists is defined %}
Listen {{ 'Ja' if post_type_analysis.structure_patterns.uses_lists else 'Nein' }}
{% endif %} {% if post_type_analysis.structure_patterns.list_style %}
Listen-Stil {{ post_type_analysis.structure_patterns.list_style }}
{% endif %}
{% if post_type_analysis.structure_patterns.structure_template %}
Struktur-Vorlage
{{ post_type_analysis.structure_patterns.structure_template }}
{% endif %}
{% endif %} {% if post_type_analysis.language_style %}

Sprachstil

{% if post_type_analysis.language_style.tone %}
Tonalität {{ post_type_analysis.language_style.tone }}
{% endif %} {% if post_type_analysis.language_style.perspective %}
Perspektive {{ post_type_analysis.language_style.perspective }}
{% endif %} {% if post_type_analysis.language_style.energy_level %}
Energie-Level
{{ post_type_analysis.language_style.energy_level }}/10
{% endif %} {% if post_type_analysis.language_style.formality %}
Formalität {{ post_type_analysis.language_style.formality }}
{% endif %} {% if post_type_analysis.language_style.sentence_types %}
Satz-Typen {{ post_type_analysis.language_style.sentence_types }}
{% endif %}
{% if post_type_analysis.language_style.typical_sentence_starters %}
Typische Satzanfänge
{% for starter in post_type_analysis.language_style.typical_sentence_starters[:8] %} "{{ starter }}" {% endfor %}
{% endif %} {% if post_type_analysis.language_style.signature_phrases %}
Signature Phrases
{% for phrase in post_type_analysis.language_style.signature_phrases[:5] %}

"{{ phrase }}"

{% endfor %}
{% endif %}
{% endif %} {% if post_type_analysis.hooks %}

Hook-Muster

{% if post_type_analysis.hooks.hook_types %}
{% for hook_type in post_type_analysis.hooks.hook_types %} {{ hook_type }} {% endfor %}
{% endif %} {% if post_type_analysis.hooks.real_examples %}
{% for example in post_type_analysis.hooks.real_examples[:4] %}
{{ example.type or 'Hook' }} {% if example.why_effective %} {{ example.why_effective }} {% endif %}

"{{ example.hook }}"

{% endfor %}
{% endif %} {% if post_type_analysis.hooks.average_hook_length %}
Durchschnittliche Hook-Länge: {{ post_type_analysis.hooks.average_hook_length }}
{% endif %}
{% endif %} {% if post_type_analysis.ctas %}

CTA-Muster

{% if post_type_analysis.ctas.cta_types %}
{% for cta_type in post_type_analysis.ctas.cta_types %} {{ cta_type }} {% endfor %}
{% endif %} {% if post_type_analysis.ctas.real_examples %}
{% for example in post_type_analysis.ctas.real_examples[:4] %}
{{ example.type or 'CTA' }}

"{{ example.cta }}"

{% endfor %}
{% endif %}
{% if post_type_analysis.ctas.cta_position %}
Position {{ post_type_analysis.ctas.cta_position }}
{% endif %} {% if post_type_analysis.ctas.cta_intensity %}
Intensität {{ post_type_analysis.ctas.cta_intensity }}
{% endif %}
{% endif %} {% if post_type_analysis.visual_patterns %}

Visuelle Elemente

{% if post_type_analysis.visual_patterns.emoji_usage %}
Emoji-Häufigkeit {{ post_type_analysis.visual_patterns.emoji_usage.frequency or 'mittel' }}
{% if post_type_analysis.visual_patterns.emoji_usage.typical_emojis %}
Typische Emojis {{ post_type_analysis.visual_patterns.emoji_usage.typical_emojis | join(' ') }}
{% endif %} {% if post_type_analysis.visual_patterns.emoji_usage.placement %}
Platzierung {{ post_type_analysis.visual_patterns.emoji_usage.placement }}
{% endif %} {% endif %} {% if post_type_analysis.visual_patterns.formatting %}
Formatierung {{ post_type_analysis.visual_patterns.formatting }}
{% endif %} {% if post_type_analysis.visual_patterns.whitespace %}
Whitespace {{ post_type_analysis.visual_patterns.whitespace }}
{% endif %}
{% endif %} {% if post_type_analysis.length_patterns %}

Längen-Muster

{% if post_type_analysis.length_patterns.ideal_length %}
Ideale Länge {{ post_type_analysis.length_patterns.ideal_length }}
{% endif %} {% if post_type_analysis.length_patterns.average_words %}
Durchschnitt {{ post_type_analysis.length_patterns.average_words }} Wörter
{% endif %} {% if post_type_analysis.length_patterns.range %}
Range {{ post_type_analysis.length_patterns.range }} Wörter
{% endif %}
{% endif %} {% if post_type_analysis.content_focus %}

Inhaltlicher Fokus

{% if post_type_analysis.content_focus.main_themes %}
{% for theme in post_type_analysis.content_focus.main_themes %} {{ theme }} {% endfor %}
{% endif %}
{% if post_type_analysis.content_focus.value_proposition %}
Mehrwert {{ post_type_analysis.content_focus.value_proposition }}
{% endif %} {% if post_type_analysis.content_focus.target_emotion %}
Ziel-Emotion {{ post_type_analysis.content_focus.target_emotion }}
{% endif %}
{% endif %} {% if post_type_analysis.recurring_elements %}

Wiederkehrende Elemente

{% if post_type_analysis.recurring_elements.phrases %}
Wiederkehrende Phrasen
{% for phrase in post_type_analysis.recurring_elements.phrases[:8] %} "{{ phrase }}" {% endfor %}
{% endif %} {% if post_type_analysis.recurring_elements.transitions %}
Typische Übergänge
{% for transition in post_type_analysis.recurring_elements.transitions[:4] %}

"{{ transition }}"

{% endfor %}
{% endif %} {% if post_type_analysis.recurring_elements.closings %}
Schlussformulierungen
{% for closing in post_type_analysis.recurring_elements.closings[:4] %}

"{{ closing }}"

{% endfor %}
{% endif %}
{% endif %} {% if post_type_analysis.writing_guidelines %}

Schreib-Richtlinien

{% if post_type_analysis.writing_guidelines.dos %}
DO
    {% for do in post_type_analysis.writing_guidelines.dos %}
  • {{ do }}
  • {% endfor %}
{% endif %} {% if post_type_analysis.writing_guidelines.donts %}
DON'T
    {% for dont in post_type_analysis.writing_guidelines.donts %}
  • {{ dont }}
  • {% endfor %}
{% endif %}
{% if post_type_analysis.writing_guidelines.key_success_factors %}
Erfolgsfaktoren
    {% for factor in post_type_analysis.writing_guidelines.key_success_factors %}
  • {{ factor }}
  • {% endfor %}
{% endif %}
{% endif %}
{% endif %} {% endblock %} {% block scripts %} {% endblock %}