Skip to content
Snippets Groups Projects
Unverified Commit 771e2c26 authored by Luke Murphy's avatar Luke Murphy
Browse files

Drop this column field for now.

parent 770a8434
No related branches found
No related tags found
No related merge requests found
......@@ -24,11 +24,15 @@ class ItemTable(tables.Table):
verbose_name=_('Select'),
attrs={'td': {'class': 'col-md-1'}}
)
created = tables.columns.DateTimeColumn(
verbose_name=_('Imported'),
format=settings.SHORT_DATETIME_FORMAT,
attrs={'td': {'class': 'col-md-1'}}
)
# Note(lukem): based on adding a bunch of new table fields, we have little
# space now on the table view. So, since we have not seen any demands from
# for this field (seems useful but anyway), we drop it for now to save
# space. Un-commenting this will bring it right back
# created = tables.columns.DateTimeColumn(
# verbose_name=_('Imported'),
# format=settings.SHORT_DATETIME_FORMAT,
# attrs={'td': {'class': 'col-md-1'}}
# )
timestamp = tables.columns.DateTimeColumn(
verbose_name=_('Created'),
format=settings.SHORT_DATETIME_FORMAT,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment