{% extends "_skel.html" %} {% block title %}{{ day.fancy }}{% endblock %} {% block content %}
{{ form.csrf_token }} {{ form.text(placeholder="What did you accomplish today?", class_="placeholder-black", autofocus=True) }}
{{ form.submit_5(class_="w-1/3 mr-1 green-btn") }} {{ form.submit_10(class_="w-1/3 mx-1 orange-btn") }} {{ form.submit_15(class_="w-1/3 ml-1 red-btn") }}

{{ day.fancy }}

{% if edit %}
done
{% else %} {% if accomplishments %}
edit
{% endif %} {% endif %}
{% for accomplishment in accomplishments %}
{{ accomplishment.text }}
{{ accomplishment.difficulty }} XP
{% if edit %} {% endif %}

{% else %}
{% if false %} {% endif %} {% if day.is_today %}

No accomplishments today... yet!

{% else %}

Nothing logged that day... but it's okay to take a break!

{% endif %}
{% endfor %}
total: {{ total_xp }} XP
Previous day
{% if links.tomorrow %}Next day {% endif %}
{% endblock %}