{% extends "base.jinja2" %} {% block title %}Grass Touching Profile{% endblock %} {% block body %}

Profile Overview{% if not your_account%} of {{ username}} {% endif %}

{% if your_account %}

Logged in as: {{ username }}

{% endif %}

Grass touches: {{ grass_touching_count }}

Last touch: {{ (time.time() - last_grass_touch_time) | timeago }}

Achievements{% if not your_account%} of {{ username}} {% endif %}

{% for achievement in achievements %} {% set unlocked = grass_touching_count >= achievement[0] %}
{% if unlocked %} ✅ {{ achievement[1] }} {% else %} 🔒 {{ achievement[1] }} {% endif %}
You have to go outside {{ achievement[0] }} times to get this!

{{ achievement[2] }}

{% endfor %}
{% if your_account %}

Change Username

Change Password

Danger Zone

These actions cannot be undone!

{% endif %}
{% endblock %}