{% extends "base.html" %} {% block title %}Dashboard - Makenot.work{% endblock %} {% block body_attrs %} class="padded-page 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 %}
{% if deactivated %} Loading...
{% else %} {% if let Some(su) = session_user %}{% if su.can_create_projects %} {% endif %}{% endif %} {% if let Some(su) = session_user %}{% if su.can_create_projects %} {% endif %}{% endif %} Loading...
{% endif %} {% endblock %} {% block scripts %} {% endblock %}