Compare commits

...

2 Commits

Author SHA1 Message Date
krateng eb5806be99 Made some list lengths 4-divisible 2023-04-16 18:52:25 +02:00
krateng 676ca9d4f5 Some interlinking 2023-04-08 17:40:18 +02:00
6 changed files with 9 additions and 9 deletions

View File

@ -79,7 +79,7 @@
<h2><a href='{{ mlj_uri.create_uri("/charts_tracks",filterkeys) }}'>Top Tracks</a></h2>
{% with amountkeys={"perpage":15,"page":0} %}
{% with amountkeys={"perpage":16,"page":0} %}
{% include 'partials/charts_tracks.jinja' %}
{% endwith %}
@ -155,7 +155,7 @@
<h2><a href='{{ mlj_uri.create_uri("/scrobbles",filterkeys) }}'>Last Scrobbles</a></h2>
{% with amountkeys = {"perpage":15,"page":0} %}
{% with amountkeys = {"perpage":16,"page":0} %}
{% include 'partials/scrobbles.jinja' %}
{% endwith %}

View File

@ -102,7 +102,7 @@
{% else %}
<h2><a href='{{ mlj_uri.create_uri("/charts_albums",filterkeys) }}'>Top Albums</a></h2>
{% with amountkeys={"perpage":15,"page":0} %}
{% with amountkeys={"perpage":16,"page":0} %}
{% include 'partials/charts_albums.jinja' %}
{% endwith %}
{% endif %}
@ -112,7 +112,7 @@
{% if info['scrobbles']>0 %}
<h2><a href='{{ mlj_uri.create_uri("/charts_tracks",filterkeys) }}'>Top Tracks</a></h2>
{% with amountkeys={"perpage":15,"page":0} %}
{% with amountkeys={"perpage":16,"page":0} %}
{% include 'partials/charts_tracks.jinja' %}
{% endwith %}
@ -191,7 +191,7 @@
<h2><a href='{{ mlj_uri.create_uri("/scrobbles",filterkeys) }}'>Last Scrobbles</a></h2>
{% with amountkeys = {"perpage":15,"page":0} %}
{% with amountkeys = {"perpage":16,"page":0} %}
{% include 'partials/scrobbles.jinja' %}
{% endwith %}
{% endif %}

View File

@ -12,7 +12,7 @@
{% set thisrange = e.range %}
{% set album = e.album %}
<tr>
<td>{{ thisrange.desc() }}</td>
<td><a href="{{ mlj_uri.create_uri("/charts_albums",{'timerange':thisrange}) }}">{{ thisrange.desc() }}</a></td>
{% if album is none %}
<td><div></div></td>

View File

@ -12,7 +12,7 @@
{% set thisrange = e.range %}
{% set artist = e.artist %}
<tr>
<td>{{ thisrange.desc() }}</td>
<td><a href="{{ mlj_uri.create_uri("/charts_artists",{'timerange':thisrange}) }}">{{ thisrange.desc() }}</a></td>
{% if artist is none %}
<td><div></div></td>

View File

@ -12,7 +12,7 @@
{% set thisrange = e.range %}
{% set track = e.track %}
<tr>
<td>{{ thisrange.desc() }}</td>
<td><a href="{{ mlj_uri.create_uri("/charts_tracks",{'timerange':thisrange}) }}">{{ thisrange.desc() }}</a></td>
{% if track is none %}
<td><div></div></td>

View File

@ -155,7 +155,7 @@
<h2><a href='{{ mlj_uri.create_uri("/scrobbles",filterkeys) }}'>Last Scrobbles</a></h2>
{% with amountkeys = {"perpage":15,"page":0} %}
{% with amountkeys = {"perpage":16,"page":0} %}
{% include 'partials/scrobbles.jinja' %}
{% endwith %}