Add initial "scanning" feature for Ordering Batches

This commit is contained in:
Lance Edgar 2021-01-31 20:46:29 -06:00
parent 801c56f06e
commit 329e75ee82
6 changed files with 553 additions and 32 deletions

View file

@ -412,10 +412,10 @@ class BatchMasterView(MasterView):
return text
if batch.complete:
label = "Mark as NOT Complete"
label = "Mark Incomplete"
value = 'false'
else:
label = "Mark as Complete"
label = "Mark Complete"
value = 'true'
kwargs = {}