Update web/templates/entry_view.html

This commit is contained in:
Joshua Laymon 2025-09-03 22:04:24 +00:00
parent f4c8dce88c
commit c9cae678df

View File

@ -65,11 +65,11 @@
<!-- Main card --> <!-- Main card -->
<div class="result-card"> <div class="result-card">
<!-- SUBJECT pills (WOL-linked) --> <!-- SUBJECT pills (WOL-linked) -->
<div class="subject-pills" id="subject-list"> <div class="subject-pills" id="subject-list" data-search-url="{% url 'search' %}">
{% if subject_list %} {% if subject_list %}
{% for s in subject_list %} {% for s in subject_list %}
<a <a
class="chip chip-subject" class="chip chip-subject subject-pill"
href="https://wol.jw.org/en/wol/s/r1/lp-e?q={{ s }}" href="https://wol.jw.org/en/wol/s/r1/lp-e?q={{ s }}"
target="_blank" rel="noopener noreferrer" target="_blank" rel="noopener noreferrer"
title="Search WOL for {{ s }}" title="Search WOL for {{ s }}"
@ -665,4 +665,7 @@ function showToast(message, duration = 3000) {
<!-- NEW: Scripture pill popup + NWT Study Bible deep-linking --> <!-- NEW: Scripture pill popup + NWT Study Bible deep-linking -->
<script src="{% static 'js/scripture-actions.v1.js' %}"></script> <script src="{% static 'js/scripture-actions.v1.js' %}"></script>
<!-- NEW: Subject pill popup + Insight/Wiki/Google/DB search -->
<script src="{% static 'js/subject-actions.v1.js' %}"></script>
{% endblock %} {% endblock %}