{% include 'bootstrap.html' %} {% include 'menu.html' %}
{% include 'header.html' %}
成员图书列表
{% if logged == False %}
{% else %}
{{ username }}
{% endif %} {% for book in books %}
{{ book.title }}
{{ book.author }}
{{ book.description }}
{% if logged == True %}
我要说两句
{% endif %} {% if book.have_comment == True %}
{{ book.user_name }} {{ book.comment_createdate }}
{{ book.comment }}
{% endif %}
{% endfor %}
{% include 'footer_mini.html' %}