{% extends "base.html" %} {% block title %}My Profile - {{ current_user.nickname }}{% endblock %} {% block content %}
{{ current_user.nickname[0].upper() }}

{{ current_user.nickname }}

{{ current_user.email }}

Riding since {{ current_user.created_at.strftime('%B %Y') }}

{{ published_count }}
Published Adventures

Visible to the community

{{ pending_count }}
Awaiting Review

Pending admin approval

Change Password

Update your account password for security

My Adventure Collection

Manage and share your motorcycle 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 }}
{% if post.published %} Live {% else %} Review {% endif %}
{% else %}
{% if post.published %} Live {% else %} Review {% endif %}
{% endif %}

{{ post.title }}

{% if post.subtitle %}

{{ post.subtitle }}

{% endif %}
{% for i in range(post.difficulty) %} {% endfor %} {{ post.get_difficulty_label() }}

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

{{ post.created_at.strftime('%m/%d') }}
Created
{{ post.images.count() }}
Photos
{{ post.gpx_files.count() }}
Routes
{% if post.published %} View Live {% endif %}
Edit
{% endfor %}
{% else %}

Your Adventure Journey Awaits!

You haven't shared any motorcycle adventures yet. Every great ride has a story worth telling!

Share Your First Adventure

Share photos, GPS tracks, and stories of your rides to inspire the community

{% endif %} {% if posts.pages > 1 %}
{% if posts.has_prev %} Previous {% endif %} Page {{ posts.page }} of {{ posts.pages }} {% if posts.has_next %} Next {% endif %}
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}