{% extends "base.html" %} {% block content %}

Review Changes

Review the AI's proposed changes below. You can accept them, discard them, or ask for further refinements on the New Draft.
{% macro render_bible(bible) %}
Metadata
Title
{{ bible.project_metadata.title }}
Genre
{{ bible.project_metadata.genre }}
Tone
{{ bible.project_metadata.style.tone }}
Characters ({{ bible.characters|length }})
Plot Structure
{% for book in bible.books %}
Book {{ book.book_number }}: {{ book.title }}

{{ book.manual_instruction }}

    {% for beat in book.plot_beats %}
  1. {{ beat }}
  2. {% endfor %}
{% endfor %}
{% endmacro %}
Original
{{ render_bible(original) }}
New Draft
{{ render_bible(new) }}
{% endblock %} {% block scripts %} {% endblock %}