From 23addae8185ba910551a669980c05c034dc965a0 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Thu, 12 Feb 2015 23:18:17 -0600 Subject: [PATCH] Rearrange primary batch fields for vendor catalogs. Catalog info seemed more important than who uploaded it. --- tailbone/views/vendors/catalogs.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tailbone/views/vendors/catalogs.py b/tailbone/views/vendors/catalogs.py index e31e7572..5afb4b2a 100644 --- a/tailbone/views/vendors/catalogs.py +++ b/tailbone/views/vendors/catalogs.py @@ -113,13 +113,13 @@ class VendorCatalogCrud(FileBatchCrud): options=parser_options) fs.configure( include=[ - fs.created, - fs.created_by, fs.vendor, fs.data_file.label("Catalog File"), - fs.filename, fs.parser_key.label("File Type"), fs.effective, + fs.filename, + fs.created, + fs.created_by, fs.executed, fs.executed_by, ])