Compare commits
No commits in common. "e2b7ff2e15c345801ea51b8671f1814985670a06" and "73a92e563600b432efbec3ae6e56482eca836f11" have entirely different histories.
e2b7ff2e15
...
73a92e5636
|
@ -3,9 +3,6 @@
|
|||
## Improved
|
||||
* mark refunded purchases red on game overview
|
||||
|
||||
## Fixed
|
||||
* Fix title not being displayed on the Recent sessions page
|
||||
|
||||
## 1.5.2 / 2024-01-14 21:27+01:00
|
||||
|
||||
## Improved
|
||||
|
|
|
@ -83,6 +83,7 @@
|
|||
class="flex bg-green-600 rounded-full px-2 w-7 h-4 text-white justify-center items-center"
|
||||
href="{{ end_session_url }}"
|
||||
hx-get="{{ end_session_url }}"
|
||||
hx-vals='{"partial":"view_game.html#session-info"}'
|
||||
hx-target="closest li"
|
||||
hx-swap="outerHTML"
|
||||
hx-indicator="#indicator"
|
||||
|
|
|
@ -311,7 +311,6 @@ def list_sessions(
|
|||
dataset = all_sessions
|
||||
|
||||
context = {
|
||||
**context,
|
||||
"dataset": dataset,
|
||||
"dataset_count": dataset.count(),
|
||||
"last": Session.objects.prefetch_related("purchase__platform").latest(),
|
||||
|
|
Loading…
Reference in New Issue