From: Christian Heller Date: Mon, 27 Jan 2025 06:46:45 +0000 (+0100) Subject: Further refine balance layout. X-Git-Url: https://plomlompom.com/repos/%7B%7B%20web_path%20%7D%7D/decks/static/%7B%7Bprefix%7D%7D/%27%29;%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20chunks.push%28escapeHTML%28span%5B2%5D%29%29;%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20chunks.push%28%27?a=commitdiff_plain;h=4f3a2dcc97c61209922bfe201601173538d8f483;p=plomledger Further refine balance layout. --- diff --git a/ledger.py b/ledger.py index 8968a4d..7a62924 100755 --- a/ledger.py +++ b/ledger.py @@ -68,13 +68,6 @@ class Account: if self.parent: self.parent.children += [self] - @property - def full_name(self) -> str: - """Return full account path.""" - if self.parent: - return f'{self.parent.full_name}:{self.basename}' - return self.basename - @property def wealth(self) -> Wealth: """Total of .local_wealth with that of .children.""" diff --git a/templates/_base.tmpl b/templates/_base.tmpl index 034c58d..0ec782d 100644 --- a/templates/_base.tmpl +++ b/templates/_base.tmpl @@ -8,8 +8,8 @@