Add field to table

This commit is contained in:
Mark Veidemanis 2022-08-30 10:37:41 +01:00
parent 147a68f6cf
commit 60f7482d66
Signed by: m
GPG Key ID: 5ACFCEED46C0904F
2 changed files with 3 additions and 0 deletions

View File

@ -57,6 +57,7 @@ $(document).ready(function(){
"server": "off", "server": "off",
"mtype": "off", "mtype": "off",
"hidden": "off", "hidden": "off",
"filename": "off",
}, },
}; };
} else { } else {

View File

@ -67,5 +67,7 @@ class DrilldownTable(Table):
mtype = Column() mtype = Column()
tokens = Column() tokens = Column()
hidden = Column() hidden = Column()
filename = Column()
template_name = "ui/drilldown/table_results.html" template_name = "ui/drilldown/table_results.html"
paginate_by = settings.DRILLDOWN_RESULTS_PER_PAGE paginate_by = settings.DRILLDOWN_RESULTS_PER_PAGE