mirror of
https://github.com/kennethreitz/kjvstudy.org.git
synced 2026-06-05 23:00:16 +00:00
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:
@@ -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 %}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user