1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Initial support for table column reordering

This commit is contained in:
Jeremy Stretch
2020-04-27 16:56:25 -04:00
parent 4971054c34
commit 0ee1112d9d
3 changed files with 29 additions and 3 deletions

View File

@ -6,13 +6,29 @@ class BaseTable(tables.Table):
"""
Default table for object lists
"""
def __init__(self, *args, **kwargs):
def __init__(self, *args, columns=None, **kwargs):
super().__init__(*args, **kwargs)
# Set default empty_text if none was provided
if self.empty_text is None:
self.empty_text = 'No {} found'.format(self._meta.model._meta.verbose_name_plural)
# Apply custom column ordering
if columns is not None:
pk = self.base_columns.pop('pk', None)
for name, column in self.base_columns.items():
if name in columns:
self.columns.show(name)
else:
self.columns.hide(name)
self.sequence = columns
# Always include PK column, if defined on the table
if pk:
self.base_columns['pk'] = pk
self.sequence.insert(0, 'pk')
class Meta:
attrs = {
'class': 'table table-hover table-headings',