{% extends 'core/base.html' %} {% block content %}

昨日记录 ({{ yesterday }})

添加阅读记录 添加感悟记录
阅读记录
{% if reading_records %} {% for reading in reading_records %} {% endfor %}
类型 标题 来源 进度 笔记 操作
{{ reading.get_type_display }} {{ reading.title }} {{ reading.source|default:"-" }} {{ reading.progress|default:"-" }} {{ reading.note|truncatechars:50|default:"-" }} {% if reading.file %} {% endif %}
{% else %}

昨日没有阅读记录,点击上方按钮添加

{% endif %}
感悟记录
{% if insight_records %} {% for insight in insight_records %} {% endfor %}
内容 操作
{{ insight.content }} {% if insight.file %} {% endif %}
{% else %}

昨日没有感悟记录,点击上方按钮添加

{% endif %}
{% endblock %}