fix: [domain explorer web] fix pagination by daterange

pull/486/head
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
1 changed files with 1 additions and 1 deletions

View File

@ -154,5 +154,5 @@ def domains_explorer_web():
except: except:
page = 1 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') return render_template("domain_explorer.html", dict_data=dict_data, bootstrap_label=bootstrap_label, domain_type='regular')