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

Renamed 'last_modified' to 'last_updated'

This commit is contained in:
Jeremy Stretch
2016-06-22 11:03:49 -04:00
parent 338539e0d6
commit 921040d2fc
5 changed files with 35 additions and 10 deletions

View File

@@ -38,8 +38,8 @@ class SecretTable(BaseTable):
device = tables.LinkColumn('secrets:secret', args=[Accessor('pk')], verbose_name='Device')
role = tables.Column(verbose_name='Role')
name = tables.Column(verbose_name='Name')
last_modified = tables.DateTimeColumn(verbose_name='Last modified')
last_updated = tables.DateTimeColumn(verbose_name='Last updated')
class Meta(BaseTable.Meta):
model = Secret
fields = ('pk', 'device', 'role', 'name', 'last_modified')
fields = ('pk', 'device', 'role', 'name', 'last_updated')