Disable ordering by size (not stored in database)

This commit is contained in:
jeremystretch 2023-05-05 09:30:16 -04:00
parent 726aab7ea3
commit 0721d4de66

View File

@ -96,6 +96,7 @@ class ImageAttachmentTable(NetBoxTable):
linkify=True linkify=True
) )
size = tables.Column( size = tables.Column(
orderable=False,
verbose_name='Size (bytes)' verbose_name='Size (bytes)'
) )