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.chars_with_fn|default_if_none:"?" }}</td>
5 <td>{{ stats.self.words|default_if_none:"?" }}</td>
6 <td>{{ stats.self.words_with_fn|default_if_none:"?" }}</td>
7 <td>{{ stats.self.verses|default_if_none:"?" }} <small>+ {{ stats.self.chars_out_verse|default_if_none:"?" }} zn.</small></td>
8 <td>{{ stats.self.verses_with_fn|default_if_none:"?" }} <small> + {{ stats.self.chars_out_verse_with_fn|default_if_none:"?" }} zn.</small></td>
11 {% for part, partstats in stats.parts %}
12 {% include 'documents/book_stats.html' with book=part stats=partstats depth=depth|add:1 %}
15 <td style="padding-left: {{ depth}}.75em;">Σ</td>
16 <td>{{ stats.total.chars }}</td>
17 <td>{{ stats.total.chars_with_fn }}</td>
18 <td>{{ stats.total.words }}</td>
19 <td>{{ stats.total.words_with_fn }}</td>
21 <td>{{ stats.total.verses }} <small>+ {{ stats.total.chars_out_verse }} zn.</small></td>
22 <td>{{ stats.total.verses_with_fn }} <small> + {{ stats.total.chars_out_verse_with_fn }} zn.</small></td>