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

Fixes #845: Fix missing edit/delete buttons on object tables for non-superusers

This commit is contained in:
Jeremy Stretch
2017-01-26 13:20:56 -05:00
parent b3b96e5e10
commit 5d5d4ac714
10 changed files with 11 additions and 55 deletions

View File

@ -17,10 +17,6 @@ class BaseTable(tables.Table):
'class': 'table table-hover',
}
@property
def model(self):
return self._meta.model
class ToggleColumn(tables.CheckBoxColumn):