Skip to content

Commit

Permalink
Fix undefined template variables
Browse files Browse the repository at this point in the history
  • Loading branch information
danlamanna committed Feb 11, 2025
1 parent 9b65583 commit fe2ce10
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion isic/ingest/templates/ingest/cohort_detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
</div>
<div class="grid gap-4" :class="`grid-cols-${numCols}`">
{% for accession in accessions %}
{% include 'ingest/partials/accession.html' with review_mode=0 %}
{% include 'ingest/partials/accession.html' with review_mode=0 include_acquisition_day=0 %}
{% endfor %}
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion isic/ingest/templates/ingest/review_gallery.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
</div>
<div class="grid gap-4" :class="`grid-cols-${numCols}`">
{% for accession in page_obj %}
{% include 'ingest/partials/accession.html' with review_mode=1 %}
{% include 'ingest/partials/accession.html' with review_mode=1 include_acquisition_day=0 %}
{% endfor %}
</div>
</div>
Expand Down

0 comments on commit fe2ce10

Please sign in to comment.