Compare commits
2 Commits
c2f1d8fe0a
...
d98758f751
Author | SHA1 | Date |
---|---|---|
Lukáš Kucharczyk | d98758f751 | |
Lukáš Kucharczyk | 904a19e65a |
|
@ -3048,12 +3048,6 @@ textarea:disabled:is(.dark *) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width: 1280px) {
|
|
||||||
.xl\:max-w-screen-xl {
|
|
||||||
max-width: 1280px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
.\32xl\:max-w-screen-2xl {
|
.\32xl\:max-w-screen-2xl {
|
||||||
max-width: 1536px;
|
max-width: 1536px;
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
{{ title }}
|
{{ title }}
|
||||||
{% endblock title %}
|
{% endblock title %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="2xl:max-w-screen-2xl xl:max-w-screen-xl md:max-w-screen-md sm:max-w-screen-sm self-center">
|
<div class="2xl:max-w-screen-2xl md:max-w-screen-md sm:max-w-screen-sm self-center">
|
||||||
<c-simple-table :columns=data.columns :rows=data.rows :page_obj=page_obj :elided_page_range=elided_page_range />
|
<c-simple-table :columns=data.columns :rows=data.rows :page_obj=page_obj :elided_page_range=elided_page_range :header_action=data.header_action />
|
||||||
</div>
|
</div>
|
||||||
{% endblock content %}
|
{% endblock content %}
|
||||||
|
|
|
@ -45,7 +45,6 @@ def list_purchases(request: HttpRequest) -> HttpResponse:
|
||||||
"header_action": A([], Button([], "Add purchase"), url="add_purchase"),
|
"header_action": A([], Button([], "Add purchase"), url="add_purchase"),
|
||||||
"columns": [
|
"columns": [
|
||||||
"Name",
|
"Name",
|
||||||
"Type",
|
|
||||||
"Platform",
|
"Platform",
|
||||||
"Price",
|
"Price",
|
||||||
"Currency",
|
"Currency",
|
||||||
|
@ -69,13 +68,8 @@ def list_purchases(request: HttpRequest) -> HttpResponse:
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
truncate_with_popover(
|
truncate_with_popover(purchase.edition.game.name),
|
||||||
purchase.edition.game.name
|
|
||||||
if purchase.type == "game"
|
|
||||||
else f"{purchase.edition.game.name} ({purchase.name})"
|
|
||||||
),
|
|
||||||
),
|
),
|
||||||
purchase.get_type_display(),
|
|
||||||
purchase.platform,
|
purchase.platform,
|
||||||
purchase.price,
|
purchase.price,
|
||||||
purchase.price_currency,
|
purchase.price_currency,
|
||||||
|
|
Loading…
Reference in New Issue