mirror of
https://github.com/krateng/maloja.git
synced 2025-07-09 03:04:07 -04:00
Fixed pagination on pulse and performance views
This commit is contained in:
parent
5fedde5e9f
commit
6958196adb
@ -9,10 +9,10 @@ def instructions(keys):
|
|||||||
from htmlmodules import module_performance, module_filterselection
|
from htmlmodules import module_performance, module_filterselection
|
||||||
from malojatime import range_desc, delimit_desc
|
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
|
#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 = "/pulse?" + compose_querystring(pulselink_keys)
|
||||||
|
|
||||||
pulselink = "<a href=\"" + pulselink + "\"><span>View Pulse</span></a>"
|
pulselink = "<a href=\"" + pulselink + "\"><span>View Pulse</span></a>"
|
||||||
@ -54,7 +54,7 @@ def instructions(keys):
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
html_performance = module_performance(**filterkeys,**timekeys,**delimitkeys)
|
html_performance = module_performance(**filterkeys,**timekeys,**delimitkeys,**paginatekeys)
|
||||||
|
|
||||||
replace = {
|
replace = {
|
||||||
"KEY_PULSE_LINK":pulselink,
|
"KEY_PULSE_LINK":pulselink,
|
||||||
|
@ -9,11 +9,11 @@ def instructions(keys):
|
|||||||
from htmlmodules import module_pulse, module_filterselection
|
from htmlmodules import module_pulse, module_filterselection
|
||||||
from malojatime import range_desc, delimit_desc
|
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
|
#equivalent performance chart if we're not looking at the overall pulse
|
||||||
if len(filterkeys) != 0:
|
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 = "/performance?" + compose_querystring(performancelink_keys)
|
||||||
|
|
||||||
performancelink = "<a href=\"" + performancelink + "\"><span>View Rankings</span></a>"
|
performancelink = "<a href=\"" + performancelink + "\"><span>View Rankings</span></a>"
|
||||||
@ -57,7 +57,7 @@ def instructions(keys):
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
html_pulse = module_pulse(**filterkeys,**timekeys,**delimitkeys)
|
html_pulse = module_pulse(**filterkeys,**timekeys,**delimitkeys,**paginatekeys)
|
||||||
|
|
||||||
replace = {
|
replace = {
|
||||||
"KEY_RANKINGS_LINK":performancelink,
|
"KEY_RANKINGS_LINK":performancelink,
|
||||||
|
@ -61,7 +61,7 @@
|
|||||||
|
|
||||||
|
|
||||||
<div class="sidelist">
|
<div class="sidelist">
|
||||||
<h1><a href="/scrobbles?max=100">Last Scrobbles</a></h1>
|
<h1><a href="/scrobbles">Last Scrobbles</a></h1>
|
||||||
<span class="stats">Today</span> KEY_SCROBBLE_NUM_TODAY
|
<span class="stats">Today</span> KEY_SCROBBLE_NUM_TODAY
|
||||||
<span class="stats">This Week</span> KEY_SCROBBLE_NUM_WEEK
|
<span class="stats">This Week</span> KEY_SCROBBLE_NUM_WEEK
|
||||||
<span class="stats">This Month</span> KEY_SCROBBLE_NUM_MONTH
|
<span class="stats">This Month</span> KEY_SCROBBLE_NUM_MONTH
|
||||||
|
Loading…
x
Reference in New Issue
Block a user