Fix stats in index.html

This commit is contained in:
2022-12-04 12:26:32 +01:00
parent 400b72dbf4
commit c2645effdb

View File

@ -59,10 +59,13 @@
<li> <li>
<p>Feed entries:</p> <p>Feed entries:</p>
<p>Total: {{ entry_count.total }} entries</p> <p>Total: {{ entry_count.total }} entries</p>
<p>Read: {{ entry_count.broken }} entries</p> <p>Read: {{ entry_count.read }} entries</p>
<p>Enabled: {{ entry_count.updates_enabled }} entries</p>
<p>Important: {{ entry_count.important }} entries</p> <p>Important: {{ entry_count.important }} entries</p>
<p>Has enclosures: {{ entry_count.has_enclosures }} entries</p> <p>Has enclosures: {{ entry_count.has_enclosures }} entries</p>
<p>1 Month: {{ entry_count.averages[0]|round(2) }} entries per day</p>
<p>3 Months: {{ entry_count.averages[1]|round(2) }} entries per day</p>
<p>12 Months: {{ entry_count.averages[2]|round(2) }} entries per day</p>
</li> </li>
</ul> </ul>