From 0524e5abc2617ab96780476d1c494b0d4d442b1f Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 17 Feb 2011 23:28:10 -0400 Subject: [PATCH] Show error column in document ocr queue list --- apps/ocr/views.py | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/ocr/views.py b/apps/ocr/views.py index fc6f63d606..e5476fb9e6 100755 --- a/apps/ocr/views.py +++ b/apps/ocr/views.py @@ -38,6 +38,7 @@ def queue_document_list(request, queue_name='default'): {'name':'document', 'attribute': 'document'}, {'name':'submitted', 'attribute': lambda x: unicode(x.datetime_submitted).split('.')[0]}, {'name':'state', 'attribute': lambda x: x.get_state_display()}, + {'name':'result', 'attribute':'result'}, ], }, )