fix: [domain explorer web] fix pagination by daterange

pull/486/head
Terrtia 2020-02-04 09:34:05 +01:00
parent f422be917a
commit 6b6c6a4d9e
No known key found for this signature in database
GPG Key ID: 1E1B1F50D84613D0
1 changed files with 1 additions and 1 deletions

View File

@ -154,5 +154,5 @@ def domains_explorer_web():
except:
page = 1
dict_data = Domain.domains_up_by_page('regular', page=page, date_from=date_from, date_to=date_to)
dict_data = Domain.get_domains_up_by_filers('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')