Update summary_log.py

Add "OMITTED" to ADR summary pdf
This commit is contained in:
Jamie Hardt
2022-08-17 21:32:45 -07:00
parent bb6fbcfd37
commit 8877982a47

View File

@@ -34,6 +34,9 @@ def build_aux_data_field(line: ADRLine):
elif line.adlib:
bg_color = 'purple'
tag_field += "<font backColor=%s textColor=%s fontSize=11>%s</font> " % (bg_color, fg_color, "ADLIB")
elif line.omitted:
bg_color = 'green'
tag_field += "<font backColor=%s textColor=%s fontSize=11>%s</font>" % (bg_color, fg_color, "OMITTED")
entries.append(tag_field)