Update web/templates/stats.html

This commit is contained in:
Joshua Laymon 2025-08-14 21:58:38 +00:00
parent 02fe4c027e
commit c7c31394a2

View File

@ -71,15 +71,23 @@
</ol> </ol>
</div> </div>
<div> <div>
<h4 style="margin:0 0 6px;">Top 10 Scriptures</h4> <h4 style="margin:0 0 6px;">Top 10 Scriptures</h4>
<ol class="small" style="margin:0; padding-left:18px;"> <ol class="small" style="margin:0; padding-left:18px;">
{% for ref, cnt in top_refs %} {% for ref, cnt in top_refs %}
<li><strong>{{ ref }}</strong> — {{ cnt }}</li> <li>
{% empty %} <a
<li class="muted">No data yet.</li> class="chip chip-link"
{% endfor %} href="{% url 'search' %}?q={{ ref|urlencode }}&scripture=on"
</ol> title="Search scripture: {{ ref }}"
</div> >
{{ ref }}
</a> — {{ cnt }}
</li>
{% empty %}
<li class="muted">No data yet.</li>
{% endfor %}
</ol>
</div>
</div> </div>
</div> </div>