[checkboxes] Fixing incorrect example; .id -> ._id

This commit is contained in:
Joseph Nix 2018-07-05 20:18:43 -05:00
parent eff8e24724
commit d7aa16568e
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ source = record.attachments.images
```html+jinja
{% for image in this.attachments.images %}
{% if image.id in this.slideshow %}
{% if image._id in this.slideshow %}
<img src="{{ image.thumbnail(500) }}" class="slide">
{% endif %}
{% endfor %}