{% extends "base.html" %} {% block title %}My Profile - {{ current_user.nickname }}{% endblock %} {% block content %}

{{ current_user.nickname }}'s Profile

{{ current_user.email }} • Member since {{ current_user.created_at.strftime('%B %Y') }}

{{ published_count }}

Published Adventures

{{ pending_count }}

Pending Review

My Adventures

{% if posts.items %}
{% for post in posts.items %}
{% set cover_image = post.images | selectattr('is_cover', 'equalto', True) | first %} {% if cover_image %}
{{ post.title }}
{{ 'Published' if post.published else 'Pending Review' }}
{% else %}
{{ 'Published' if post.published else 'Pending Review' }}
{% endif %}
{{ post.title }}
{% if post.subtitle %}

{{ post.subtitle }}

{% endif %}
{{ '⭐' * post.difficulty }} {% if post.difficulty == 1 %}Easy{% elif post.difficulty == 2 %}Moderate{% elif post.difficulty == 3 %}Challenging{% elif post.difficulty == 4 %}Hard{% else %}Expert{% endif %}

{{ (post.content[:100] + '...') if post.content|length > 100 else post.content }}

Created: {{ post.created_at.strftime('%Y-%m-%d') }}
{% if post.updated_at and post.updated_at != post.created_at %}
Updated: {{ post.updated_at.strftime('%Y-%m-%d') }}
{% endif %}
{{ post.images.count() }} images • {{ post.gpx_files.count() }} GPS tracks
{% if post.published %} View {% endif %} Edit
{% endfor %}
{% if posts.pages > 1 %} {% endif %} {% else %}

No Adventures Yet

You haven't shared any motorcycle adventures yet. Start your journey!

Create Your First Adventure
{% endif %}
{% endblock %}