mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2025-06-16 13:06:06 +00:00
Working on first-round changes for the global search feature.
This commit is contained in:
@ -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):
|
||||
|
Reference in New Issue
Block a user