mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-01-15 05:33:26 +01:00
[PR #321] [MERGED] feat(accounts): add option for untracking accounts on a per user basis #357
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/eitchtee/WYGIWYH/pull/321
Author: @eitchtee
Created: 8/9/2025
Status: ✅ Merged
Merged: 8/9/2025
Merged by: @eitchtee
Base:
main← Head:feature/untrack-account📝 Commits (4)
7f8261brefactor: Style transaction items for untracked accounts55c4b92feat(accounts): add option for untracking accounts on a per user basisc6cd525fix(insights): display untracked accounts on sankey by account20c6989fix(insights:emergency-fund): hide untracked accounts📊 Changes
12 files changed (+141 additions, -36 deletions)
View changed files
➕
app/apps/accounts/migrations/0016_account_untracked_by.py(+20 -0)📝
app/apps/accounts/models.py(+11 -2)📝
app/apps/accounts/urls.py(+5 -0)📝
app/apps/accounts/views/accounts.py(+20 -0)📝
app/apps/insights/utils/transactions.py(+8 -1)📝
app/apps/insights/views.py(+10 -5)📝
app/apps/monthly_overview/views.py(+17 -7)📝
app/apps/net_worth/views.py(+12 -8)📝
app/apps/transactions/views/transactions.py(+4 -1)📝
app/apps/yearly_overview/views.py(+1 -0)📝
app/templates/accounts/fragments/list.html(+11 -0)📝
app/templates/cotton/transaction/item.html(+22 -12)📄 Description
Untracked accounts is a special kind of account which transactions are still displayed, but their totals are hidden from any summary or insight that isn't account specific (e.g. Net worth by account).
Untracked accounts are user specific to better acommodate shared accounts, each user with access to the account must untrack or track it individually.
Accounts are tracked by default.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.