fixed 404 bug, added default ordering for some tables
This commit is contained in:
@@ -37,6 +37,12 @@ class SoftwareProductTable(BaseTable):
|
||||
"installations",
|
||||
# "tags",
|
||||
)
|
||||
sequence = (
|
||||
"manufacturer",
|
||||
"name",
|
||||
"description",
|
||||
"installations",
|
||||
)
|
||||
|
||||
|
||||
class SoftwareProductVersionTable(BaseTable):
|
||||
@@ -76,6 +82,12 @@ class SoftwareProductVersionTable(BaseTable):
|
||||
"installations",
|
||||
# "tags",
|
||||
)
|
||||
sequence = (
|
||||
"manufacturer",
|
||||
"software_product",
|
||||
"name",
|
||||
"installations",
|
||||
)
|
||||
|
||||
|
||||
class SoftwareProductInstallationTable(BaseTable):
|
||||
|
||||
Reference in New Issue
Block a user