mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 00:28:22 +00:00
fix: [domain explorer web] fix pagination by daterange
This commit is contained in:
parent
8770bf05d7
commit
f422be917a
1 changed files with 1 additions and 1 deletions
|
@ -154,5 +154,5 @@ def domains_explorer_web():
|
|||
except:
|
||||
page = 1
|
||||
|
||||
dict_data = Domain.domains_up_by_page('regular', page=page)
|
||||
dict_data = Domain.domains_up_by_page('regular', page=page, date_from=date_from, date_to=date_to)
|
||||
return render_template("domain_explorer.html", dict_data=dict_data, bootstrap_label=bootstrap_label, domain_type='regular')
|
||||
|
|
Loading…
Reference in a new issue