Update web/templates/stats.html
This commit is contained in:
parent
02fe4c027e
commit
c7c31394a2
@ -71,15 +71,23 @@
|
||||
</ol>
|
||||
</div>
|
||||
<div>
|
||||
<h4 style="margin:0 0 6px;">Top 10 Scriptures</h4>
|
||||
<ol class="small" style="margin:0; padding-left:18px;">
|
||||
{% for ref, cnt in top_refs %}
|
||||
<li><strong>{{ ref }}</strong> — {{ cnt }}</li>
|
||||
{% empty %}
|
||||
<li class="muted">No data yet.</li>
|
||||
{% endfor %}
|
||||
</ol>
|
||||
</div>
|
||||
<h4 style="margin:0 0 6px;">Top 10 Scriptures</h4>
|
||||
<ol class="small" style="margin:0; padding-left:18px;">
|
||||
{% for ref, cnt in top_refs %}
|
||||
<li>
|
||||
<a
|
||||
class="chip chip-link"
|
||||
href="{% url 'search' %}?q={{ ref|urlencode }}&scripture=on"
|
||||
title="Search scripture: {{ ref }}"
|
||||
>
|
||||
{{ ref }}
|
||||
</a> — {{ cnt }}
|
||||
</li>
|
||||
{% empty %}
|
||||
<li class="muted">No data yet.</li>
|
||||
{% endfor %}
|
||||
</ol>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user