{% extends "base.html" %} {% block content %}

你好,{{ current_user.username }}!

今天也要加油呀!距离梦想更进一步了呢~

📚
今天是
努力的第--
💪
100%
努力指数
5
今日成就

最近心情

{% if recent_moods %}
{% for entry in recent_moods %}
{{ entry.date.strftime('%Y-%m-%d') }}
{{ entry.content }}
{% for i in range(1, 6) %} {% if i <= entry.mood_level %} {% else %} {% endif %} {% endfor %}
{% endfor %}
查看全部 {% else %}

还没有心情记录,去记录一下吧~

{% endif %}

最近照片

{% if recent_photos %}
{% for photo in recent_photos %}
照片
{{ photo.date.strftime('%Y-%m-%d') }}
{% endfor %}
查看全部 {% else %}

还没有照片,去上传一张吧~

{% endif %}
"成功不是将来才有的,而是从决定去做的那一刻起,持续累积而成。"
{% endblock %} {% block scripts %} {% endblock %}
问题反馈