5ce14deaa319e4123dc4d8595214e099b91930bf
[redakcja.git] / src / documents / templates / documents / book_stats.html
1 <tr>
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>
9 </tr>
10 {% if stats.parts %}
11   {% for part, partstats in stats.parts %}
12     {% include 'documents/book_stats.html' with book=part stats=partstats depth=depth|add:1 %}
13   {% endfor %}
14   <tr>
15     <td style="padding-left: {{ depth}}.75em;">&Sigma;</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>
20
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>
23
24   </tr>
25 {% endif %}