{% extends 'base.html' %} {% block content %}

Saved Posts Repository

{% if posts %}
{% for post in posts %} {% endfor %}
S.No Topic / Content Context Scheduled For Status Actions
{{ loop.index }} {% if post.topic_context %} {{ post.topic_context }} {% else %} {{ post.content | truncate(60) }} {% endif %} {{ post.scheduled_at }} {% if post.status == 'posted' %} Published {% else %} {{ post.status|capitalize }} {% endif %}
{% if post.status != 'posted' %}
{% else %} No further actions {% endif %}
{% else %}

No Saved Posts Found

You haven't scheduled or saved any LinkedIn posts yet.

๐Ÿš€ Start Generating Content
{% endif %}
{% endblock %}