{% extends "base.html" %} {% block title %}Dashboard{% endblock %} {% block content %}

Dashboard

Connected as {{ username }}

Subscribers

{{ stats.subscribers }}

Posts

{{ stats.posts }}

Notifications

{{ stats.notifications_sent }}

Open rate

{{ stats.formatted_rate() }}

Subscribers management

View and manage your subscribers.

{% block subs %} {% if subscribers.is_empty() %}

No data available

Content may have shifted due to recent updates.

{% else %} {% for subscriber in subscribers %} {% include "sub_card_fragment.html" %} {% endfor %} {% endif %}
Page: {{ current_page }}
{% endblock %}

Write a new post

Publish a new post online. Subscribers will be notified.

Send an email

Contact your subscribers directly.

Change your password

Set a new password for your account.

{% endblock %}