fixed 404 bug, added default ordering for some tables

This commit is contained in:
Hedde van der Heide
2022-03-28 11:07:33 +02:00
parent 51736942e7
commit f4188b957f
3 changed files with 13 additions and 2 deletions
+12
View File
@@ -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):