{% extends "base.html" %} {% load form_helpers %} {% load browse_helpers %} {% block title %} {{ textbook.title }} {% endblock %} {% block content %} {% as_modification_display "Created by" textbook.created_by textbook.creation_datetime %}

{{ textbook.title }}

{% if can_edit %} Edit Text book {% endif %} {% if can_approve %} Approve Text book {% endif %}
{% if textbook.tags.count %} Tags: {{ textbook.tags_field }}
{% endif %}

Tasks: {% if can_create_chapters %} Create Tasks {% endif %}

{% if chapters %} {% for chap in chapters %} {% endfor %}
{{chap.title}}
{% else %} (Chapters are yet to be added by the Coordinator or T/A.)
{% endif %}
{% if comments %} comments:

{% for comment in comments %} {{ comment.commented_by.username }} on {{ comment.comment_datetime|date:"D d M Y"}} at {{comment.comment_datetime|time:"H:i"}} wrote:
{{ comment.data|linebreaksbr }}
{% endfor %} {% endif %}
{% if can_comment %} {% as_div_form form "Comment Form" csrf_token "Submit" %} {% endif %} {% endblock %}