diff options
Diffstat (limited to 'tbc/templates')
-rw-r--r-- | tbc/templates/tbc/book-review-details.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tbc/templates/tbc/book-review-details.html b/tbc/templates/tbc/book-review-details.html index ec90cd0..7e52c26 100644 --- a/tbc/templates/tbc/book-review-details.html +++ b/tbc/templates/tbc/book-review-details.html @@ -45,12 +45,14 @@ <th>User</th> <th>Time</th> <th>Activity</th> + <th class="span6">Conversation</th> </tr> {% for log in logs %} <tr> <td> {{ log.user }} </td> <td> {{ log.action_time }} </td> <td> {{ log.change_message }} </td> + <td> {{ log.conversation|linebreaksbr }} </td> </tr> {% endfor %} <table> |