Add field to table
This commit is contained in:
parent
147a68f6cf
commit
60f7482d66
|
@ -57,6 +57,7 @@ $(document).ready(function(){
|
|||
"server": "off",
|
||||
"mtype": "off",
|
||||
"hidden": "off",
|
||||
"filename": "off",
|
||||
},
|
||||
};
|
||||
} else {
|
||||
|
|
|
@ -67,5 +67,7 @@ class DrilldownTable(Table):
|
|||
mtype = Column()
|
||||
tokens = Column()
|
||||
hidden = Column()
|
||||
filename = Column()
|
||||
|
||||
template_name = "ui/drilldown/table_results.html"
|
||||
paginate_by = settings.DRILLDOWN_RESULTS_PER_PAGE
|
||||
|
|
Loading…
Reference in New Issue