{% extends "base.html" %} {% block title %}Generated Story - Travel Records{% endblock %} {% block content %}

📖 Your Travel Story

{{ story_data.story_type.title() }} generated from your travel experiences

{{ story_data.word_count }} words • {{ story_data.records_used }} trips
Story Details
Story Type {{ story_data.story_type.title() }}
Generated {{ story_data.generated_at.strftime('%B %d, %Y at %I:%M %p') }}
Destinations Included
{% for destination in story_data.destinations %} {{ destination }} {% endfor %}
{% for paragraph in story_data.story.split('\n\n') %} {% if paragraph.strip() %}

{{ paragraph.strip() }}

{% endif %} {% endfor %}
Generate Another Story
{{ story_data.word_count }}

Words

{{ story_data.records_used }}

Trips Included

{{ story_data.destinations|length }}

Destinations

{{ (story_data.word_count / 200)|round|int }} min

Reading Time

Travel Records Used in This Story
{% for destination in story_data.destinations %}
{{ destination }}

Included in {{ story_data.story_type }} story

{% endfor %}
{% endblock %}