Fixed bug in batch rows grid view.
This commit is contained in:
parent
d1b2983a9b
commit
bb67fd3c32
|
@ -122,8 +122,10 @@ def BatchRowsGrid(request):
|
|||
|
||||
|
||||
def batch_rows_grid(request):
|
||||
grid = BatchRowsGrid(request)
|
||||
return grid()
|
||||
result = BatchRowsGrid(request)
|
||||
if isinstance(result, HTTPFound):
|
||||
return result
|
||||
return result()
|
||||
|
||||
|
||||
def batch_rows_delete(request):
|
||||
|
|
Loading…
Reference in a new issue