{% extends "base.html" %} {% block title %}Dashboard - Makenotwork{% endblock %} {% block body_attrs %} class="{{ crate::shell::measure(crate::shell::Measure::Wide) }} dashboard-page dashboard-user-page"{% endblock %} {% block content %} {% include "partials/site_header.html" %} {% if let Some(su) = session_user %}{% if su.is_sandbox %}
Sandbox mode: your data will be deleted when the session expires. Create an account to keep your work.
{% endif %}{% endif %}
{% if deactivated %}

Account Deactivated

Your account is deactivated. Your content is hidden from fans and no new content can be created.

You can:

{% elif creator_paused %}

Account Paused

Your creator account is paused. Existing fan subscriptions will expire at the end of their billing period. One-time purchases remain accessible. No new sales can be made.

To resume, re-subscribe to a creator plan:

{% elif suspended %}
{% let reason = suspension_reason.as_deref().unwrap_or("No reason provided") %} {% include "partials/suspension_banner.html" %}
{% endif %} {% if let Some(warning) = password_warning %}
Password Warning: {{ warning }} You can change your password in Account settings.
{% endif %}

{{ user.username }}

{% if let Some(checklist) = onboarding %} {% include "partials/onboarding_checklist.html" %} {% endif %} {% if show_checklist_recovery %} {% endif %}
{{ tabs|safe }}
{% endblock %} {% block scripts %} {% endblock %}