diff --git a/website/performance.py b/website/performance.py index 48f49f1..125682f 100644 --- a/website/performance.py +++ b/website/performance.py @@ -9,10 +9,10 @@ def instructions(keys): from htmlmodules import module_performance, module_filterselection from malojatime import range_desc, delimit_desc - filterkeys, timekeys, delimitkeys, _ = uri_to_internal(keys) + filterkeys, timekeys, delimitkeys, paginatekeys = uri_to_internal(keys) #equivalent pulse chart - pulselink_keys = internal_to_uri({**filterkeys,**timekeys,**delimitkeys}) + pulselink_keys = internal_to_uri({**filterkeys,**timekeys,**delimitkeys,**paginatekeys}) pulselink = "/pulse?" + compose_querystring(pulselink_keys) pulselink = "View Pulse" @@ -54,7 +54,7 @@ def instructions(keys): - html_performance = module_performance(**filterkeys,**timekeys,**delimitkeys) + html_performance = module_performance(**filterkeys,**timekeys,**delimitkeys,**paginatekeys) replace = { "KEY_PULSE_LINK":pulselink, diff --git a/website/pulse.py b/website/pulse.py index 78572a5..2f2679c 100644 --- a/website/pulse.py +++ b/website/pulse.py @@ -9,11 +9,11 @@ def instructions(keys): from htmlmodules import module_pulse, module_filterselection from malojatime import range_desc, delimit_desc - filterkeys, timekeys, delimitkeys, _ = uri_to_internal(keys) + filterkeys, timekeys, delimitkeys, paginatekeys = uri_to_internal(keys) #equivalent performance chart if we're not looking at the overall pulse if len(filterkeys) != 0: - performancelink_keys = internal_to_uri({**filterkeys,**timekeys,**delimitkeys}) + performancelink_keys = internal_to_uri({**filterkeys,**timekeys,**delimitkeys,**paginatekeys}) performancelink = "/performance?" + compose_querystring(performancelink_keys) performancelink = "View Rankings" @@ -57,7 +57,7 @@ def instructions(keys): - html_pulse = module_pulse(**filterkeys,**timekeys,**delimitkeys) + html_pulse = module_pulse(**filterkeys,**timekeys,**delimitkeys,**paginatekeys) replace = { "KEY_RANKINGS_LINK":performancelink, diff --git a/website/start.html b/website/start.html index 926aaf7..a83c1f2 100644 --- a/website/start.html +++ b/website/start.html @@ -61,7 +61,7 @@
-

Last Scrobbles

+

Last Scrobbles

Today KEY_SCROBBLE_NUM_TODAY This Week KEY_SCROBBLE_NUM_WEEK This Month KEY_SCROBBLE_NUM_MONTH