fix: [domain explorer web] fix pagination by daterange

This commit is contained in:
Terrtia 2020-02-04 09:29:53 +01:00
parent 8770bf05d7
commit f422be917a
No known key found for this signature in database
GPG key ID: 1E1B1F50D84613D0

View file

@ -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')