From f396dacee513898389b7d418f5c8de3dd2e2a92b Mon Sep 17 00:00:00 2001 From: Chris Giacofei Date: Fri, 7 Jun 2024 11:04:02 -0400 Subject: [PATCH] Fix display of batch parents. Fixes #5. --- yeast/templates/yeast/batch.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yeast/templates/yeast/batch.html b/yeast/templates/yeast/batch.html index a9777b2..5daa397 100644 --- a/yeast/templates/yeast/batch.html +++ b/yeast/templates/yeast/batch.html @@ -16,7 +16,7 @@ {% if batch.parent.all %} Parents:{% endif %} {% for parent in batch.parent.all %} - {{ parent.batch.id}}{% if not forloop.last %},{% endif %} + {{ parent.id}}{% if not forloop.last %},{% endif %} {% endfor %}