From 02acd177b7f6b0e732b5d6e0579d477e38b586e4 Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 20 Apr 2022 17:40:53 +0200 Subject: [PATCH] fixed format problems --- docs/report/build.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/report/build.md b/docs/report/build.md index 1470070..da12e42 100644 --- a/docs/report/build.md +++ b/docs/report/build.md @@ -26,7 +26,7 @@ In addition to the default report context variables, the following context varia | build.status | The status of the build. 20 means 'Production' | | build.bom_items | A query set with all bom items for the build | -bom_items that can be looped using {%for line in build.bom_items %} Each bom_item line has further context variables. +bom_items that can be looped using ```html {%for line in build.bom_items %}``` Each bom_item line has further context variables. | Variable | Description | | --- | --- | @@ -68,7 +68,7 @@ sub_part.IPN: {{ line.sub_part.IPN }}
sub_part.name: {{ line.sub_part.name }}
-sub_part.build_order_allocations: {{ line.sub_part.build_order_allocations}} +sub_part.build_order_allocations: {{ line.sub_part.build_order_allocations }}
........