update trade acceptance styling and layout, and also trade acceptance update/details page. fixes #16

This commit is contained in:
badblocks 2025-04-10 23:55:08 -07:00
parent 1c95ccfff7
commit 5fbe80e83a
14 changed files with 257 additions and 139 deletions

View file

@ -1,4 +1,4 @@
# Generated by Django 5.1.2 on 2025-04-08 06:24
# Generated by Django 5.1.2 on 2025-04-13 05:10
import django.db.models.deletion
from django.db import migrations, models

View file

@ -28,4 +28,9 @@ def card_badge_inline(card, quantity=None):
'cardset': card.cardset,
'expanded': True,
})
return mark_safe(html)
return mark_safe(html)
@register.filter
def addstr(arg1, arg2):
"""concatenate arg1 & arg2"""
return str(arg1) + str(arg2)