2   <td style="padding-left: {{ depth}}.75em;">{{ book.book_info.title|default:"???" }}</td>
 
   3   <td>{{ stats.self.chars|default_if_none:"?" }}</td>
 
   4   <td>{{ stats.self.words|default_if_none:"?" }}</td>
 
   5   <td>{{ stats.self.chars_with_fn|default_if_none:"?" }}</td>
 
   6   <td>{{ stats.self.words_with_fn|default_if_none:"?" }}</td>
 
   9   {% for part, partstats in stats.parts %}
 
  10     {% include 'documents/book_stats.html' with book=part stats=partstats depth=depth|add:1 %}
 
  14     <td>{{ stats.total.chars }}</td>
 
  15     <td>{{ stats.total.words }}</td>
 
  16     <td>{{ stats.total.chars_with_fn }}</td>
 
  17     <td>{{ stats.total.words_with_fn }}</td>