Fix cross-reference field name in verse PDF template

Changed ref.reference to xref.ref to match actual data structure

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-11-29 23:41:28 -05:00
parent 8634e8ad7f
commit 41e3d45bf2
+2 -2
View File
@@ -218,8 +218,8 @@
{% if cross_references %}
<h2>Additional Cross-References</h2>
{% for ref in cross_references[:10] %}
<p><strong>{{ ref.reference }}</strong>: <em>{{ ref.text }}</em></p>
{% for xref in cross_references[:10] %}
<p><strong>{{ xref.ref }}</strong>{% if xref.note %} ({{ xref.note }}){% endif %}{% if xref.text %}: <em>{{ xref.text }}</em>{% endif %}</p>
{% endfor %}
{% endif %}