capitalise the Net column

This commit is contained in:
Andreas Zweili 2020-01-01 19:25:36 +01:00
parent 871d27e2ca
commit 6b8db3654f

View File

@ -49,7 +49,7 @@ class DevicesTable(tables.Table):
class NetsTable(tables.Table):
id = tables.Column(visible=False)
name = tables.Column('net', linkify=True)
name = tables.Column('Net', linkify=True)
customer = tables.Column('Customer', linkify=True)
class Meta: