Commit 30d8fe06 by Kálmán Viktor

network: order hosts by noramlized hostname

parent 07195cac
...@@ -70,7 +70,11 @@ class GroupTable(Table): ...@@ -70,7 +70,11 @@ class GroupTable(Table):
class HostTable(Table): class HostTable(Table):
hostname = LinkColumn('network.host', args=[A('pk')]) hostname = LinkColumn(
'network.host',
args=[A('pk')],
order_by="normalized_hostname",
)
mac = MACColumn() mac = MACColumn()
class Meta: class Meta:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment