{% extends 'base.html' %} {% block title %}Performance{% endblock %} {% block page_title %}Post Performance{% endblock %} {% block content %} {% if not selected_page_id %}

Select a Page

Please select a Facebook page from the dropdown above to view its analytics and performance metrics.

{% else %}
{% for info in insights %} {% else %} {% endfor %}
Published Date Page Post Content Reach Engagements Clicks Actions
{{ info.log.executed_at.strftime('%Y-%m-%d %H:%M') }}
{% if info.page.picture_url %} {% else %} {{ info.page.page_name[0] }} {% endif %}
{{ info.page.page_name }}
{{ info.post.title or info.post.content[:40] }}...
{{ "{:,}".format(info.reach) }}
{{ "{:,}".format(info.engagements) }}
{% if info.reach > 0 %} {{ "%.1f"|format(info.engagements / info.reach * 100) }}% rate {% else %} 0.0% rate {% endif %}
{{ "{:,}".format(info.clicks) }}
View on FB

No published posts with valid Facebook IDs found.

{% endif %} {% if pagination and pagination.pages > 1 %}
{% if pagination.has_prev %} « Prev {% else %} {% endif %}
Page {{ pagination.page }} of {{ pagination.pages }}
{% if pagination.has_next %} Next » {% else %} {% endif %}
{% endif %} {% endblock %}