Update web/templates/stats.html

This commit is contained in:
Joshua Laymon 2025-08-14 21:50:29 +00:00
parent f430a12ab5
commit b95fbba264

View File

@ -77,52 +77,130 @@
</div> </div>
</div> </div>
<!-- Tools: Scripture normalizer --> <!-- Tools: collapsible panel -->
<div class="card" style="padding:16px; margin-bottom:24px;"> <div class="card" style="padding:16px; margin-bottom:24px;">
<div class="meta-label">Tools</div> <div style="display:flex; align-items:center; justify-content:space-between; gap:10px;">
<div class="small muted" style="margin:6px 0 10px;"> <div class="meta-label">Maintenance Tools</div>
Normalize scripture references (abbreviations, separators, repeat book names where needed). <button
class="btn btn-secondary"
type="button"
id="tools-toggle"
aria-expanded="false"
aria-controls="tools-panel"
>
▾ Show tools
</button>
</div> </div>
<div style="display:flex; gap:10px; flex-wrap:wrap;">
<!-- Dryrun --> <div id="tools-panel" class="tools-panel" hidden>
<form method="get" action="{% url 'normalize_scripture' %}"> <!-- Scripture Normalizer -->
<input type="hidden" name="limit" value=""> <div class="tool-block">
<h4>Scripture Normalizer</h4>
<p class="small muted">
Standardizes Bible references (book abbreviations, separators, and repeats book names as needed).
Use preview first; Apply will modify all <code>scripture_raw</code> fields.
</p>
<div class="tool-actions">
<form method="get" action="{% url 'normalize_scripture' %}" class="inline">
<input type="number" min="0" name="limit" placeholder="Preview limit (optional)"
class="tool-input">
<button class="btn btn-secondary">Preview (dryrun)</button> <button class="btn btn-secondary">Preview (dryrun)</button>
</form> </form>
{% if user.is_authenticated and user.is_staff %} {% if user.is_authenticated and user.is_staff %}
<!-- Apply --> <form method="post" action="{% url 'normalize_scripture' %}" class="inline">
<form method="post" action="{% url 'normalize_scripture' %}">
{% csrf_token %} {% csrf_token %}
<button class="btn btn-danger" onclick="return confirm('Apply normalization to ALL entries? This will modify scripture_raw fields.');"> <button class="btn btn-danger"
onclick="return confirm('Apply Scripture Normalizer to ALL entries? This will modify scripture_raw fields.');">
Apply to all Apply to all
</button> </button>
</form> </form>
{% endif %} {% endif %}
</div> </div>
<div class="small muted" style="margin-top:8px;">
Tip: you can pass <code>?limit=1000</code> on the preview URL to test a subset.
</div> </div>
</div>
<!-- Source Normalizer card (like Scripture tool) -->
<div class="search-form" style="margin-top:16px;">
<h3 style="margin:0 0 10px;">Tools — Source Normalizer</h3>
<p class="small muted" style="margin:0 0 8px;">
Convert Watchtower/Awake!/Yearbook/KM references (e.g., “March 15, 2013 WT page 14”) into WOL short-codes
like <code>w13 3/15 p.14</code>. NonJW sources are left unchanged.
</p>
<form method="get" action="{% url 'normalize_source' %}" style="display:inline;"> <hr class="tool-sep">
<input type="number" min="0" name="limit" placeholder="Preview limit (optional)" style="border:1px solid var(--border); border-radius:8px; padding:6px 8px;">
<button class="btn">Dryrun Preview</button> <!-- Source Normalizer -->
<div class="tool-block">
<h4>Source Normalizer</h4>
<p class="small muted">
Converts Watchtower/Awake!/Yearbook/KM references (e.g., “March 15, 2013 WT page 14”) into WOL shortcodes
like <code>w13 3/15 p.14</code>. NonJW sources are left unchanged. Use preview first; Apply will modify all
<code>source</code> fields.
</p>
<div class="tool-actions">
<form method="get" action="{% url 'normalize_source' %}" class="inline">
<input type="number" min="0" name="limit" placeholder="Preview limit (optional)"
class="tool-input">
<button class="btn btn-secondary">Preview (dryrun)</button>
</form> </form>
<form method="post" action="{% url 'normalize_source' %}" style="display:inline; margin-left:8px;"> {% if user.is_authenticated and user.is_staff %}
<form method="post" action="{% url 'normalize_source' %}" class="inline">
{% csrf_token %} {% csrf_token %}
<button class="btn btn-danger" onclick="return confirm('Apply normalization to all entries? This cannot be undone. Make a backup first.')"> <button class="btn btn-danger"
Apply to All onclick="return confirm('Apply Source Normalizer to ALL entries? This cannot be undone. Make a backup first.');">
Apply to all
</button> </button>
</form> </form>
{% endif %}
</div> </div>
</div> </div>
</div>
</div>
</div>
<!-- Tiny, scoped styles + JS for the collapsible panel -->
<style>
.tools-panel{
margin-top:12px;
border:1px solid var(--border);
border-radius:12px;
background:#fff;
padding:14px;
}
.tool-block h4{
margin:0 0 6px;
font-size:16px;
color:#0f172a;
}
.tool-actions{
display:flex;
flex-wrap:wrap;
gap:10px;
margin-top:8px;
}
.tool-input{
border:1px solid var(--border);
border-radius:8px;
padding:6px 8px;
font-size:14px;
margin-right:6px;
}
.tool-sep{
border:none;
border-top:1px solid var(--border);
margin:14px 0;
}
</style>
<script>
(function(){
var btn = document.getElementById('tools-toggle');
var panel = document.getElementById('tools-panel');
if(!btn || !panel) return;
btn.addEventListener('click', function(){
var open = panel.hasAttribute('hidden') ? false : true;
if(open){
panel.setAttribute('hidden', '');
btn.textContent = '▾ Show tools';
btn.setAttribute('aria-expanded', 'false');
}else{
panel.removeAttribute('hidden');
btn.textContent = '▴ Hide tools';
btn.setAttribute('aria-expanded', 'true');
}
});
})();
</script>
{% endblock %} {% endblock %}