Working on first-round changes for the global search feature.

This commit is contained in:
Matt Scott
2023-02-19 15:54:11 -05:00
parent 67040ad9c2
commit 14e534468a
2 changed files with 242 additions and 178 deletions

View File

@ -2055,7 +2055,14 @@ def global_search():
else:
pass
return render_template('admin_global_search.html', domains=domains, records=records, comments=comments)
params: dict = {
'query': query if query is not None else '',
'domains': domains,
'records': records,
'comments': comments,
}
return render_template('admin_global_search.html', **params)
def validateURN(value):