Add first info to landing page

This commit is contained in:
2025-10-23 12:35:52 +02:00
parent f6e69b1521
commit 81929cca21
11 changed files with 186 additions and 57 deletions

View File

@@ -19,6 +19,10 @@ class Account(Base):
back_populates="accounts",
)
@property
def balance(self):
return 141.23
user_account_association = Table(
TABLE_PREFIX + "user_account_association",