{% extends "_layouts/base.html" %} {% load static %} {% load i18n %} {% block head %} {% endblock head %} {% block content %}
{% include "journals/_partials/journal_header.html" with journal=journal %}
{% if messages %}
{% for message in messages %}
{% if message.tags == 'error' %}⚠️{% else %}✓{% endif %} {{ message }}
{% endfor %}
{% endif %}
{% csrf_token %}

{% trans "Basic Information" %}

{% trans "A descriptive name for your journal" %}
/journals/
{% trans "URL-friendly version of the name" %}
{% trans "Brief description of your journal's purpose" %}

{% trans "Mode & Classification" %}

{% trans "Mode is locked after creation" %}
{% if journal.mode == "book" or journal.mode == "light_novel" %}
{% trans "Current writing status" %}
{% endif %} {% if journal.mode == "book" or journal.mode == "light_novel" %}
{% trans "Primary genre of your work" %}
{% endif %} {% if journal.mode != "default" and journal.mode != "diary" %}
{% if journal.cover_image %}
{% trans 'Current cover' %}
{% endif %}
{% trans "Upload a new image to replace the current cover" %}
{% endif %}

{% trans "Privacy & Sharing" %}

{% trans "Private journals are only visible to you and users you explicitly share them with" %}
{% if journal.private %}
{% for user in journal.shared_with.all %} {{ user.username }} {% endfor %}
{% trans "Users who can access this private journal" %}
{% endif %}

{% trans "Custom Styling" %}

{% trans "Custom CSS to style your journal" %}

{% trans "Translations" %}

{% for translation in journal.translations.all %}
{% endfor %}
{% endblock content %} {% block scripts %} {% endblock scripts %}