[PR #164] [MERGED] feat: insights page #229

Closed
opened 2025-12-29 00:19:06 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/eitchtee/WYGIWYH/pull/164
Author: @eitchtee
Created: 2/16/2025
Status: Merged
Merged: 2/16/2025
Merged by: @eitchtee

Base: mainHead: insights


📝 Commits (10+)

  • a3a8791 feat(insights): create app
  • 9c55dac feat(insights): sankey diagram (WIP)
  • d0f2742 chore(frontend): install chartjs-chart-sankey
  • 28b12fa fix(insights): sankey diagram inconsistent sizing
  • 038438f insights (wip)
  • b53a4a0 feat(insights): create app
  • 02376ad feat(insights): sankey diagram (WIP)
  • 9c339fa chore(frontend): install chartjs-chart-sankey
  • 7a2acb6 fix(insights): sankey diagram inconsistent sizing
  • dd24fd5 insights (wip)

📊 Changes

26 files changed (+1205 additions, -114 deletions)

View changed files

📝 app/WYGIWYH/urls.py (+1 -0)
📝 app/apps/common/widgets/datepicker.py (+53 -0)
app/apps/insights/__init__.py (+0 -0)
app/apps/insights/admin.py (+3 -0)
app/apps/insights/apps.py (+6 -0)
app/apps/insights/forms.py (+110 -0)
app/apps/insights/migrations/__init__.py (+0 -0)
app/apps/insights/models.py (+3 -0)
app/apps/insights/tests.py (+3 -0)
app/apps/insights/urls.py (+17 -0)
app/apps/insights/utils/__init__.py (+0 -0)
app/apps/insights/utils/sankey.py (+248 -0)
app/apps/insights/utils/transactions.py (+96 -0)
app/apps/insights/views.py (+94 -0)
📝 app/apps/transactions/views/transactions.py (+0 -2)
📝 app/locale/de/LC_MESSAGES/django.po (+83 -36)
📝 app/locale/nl/LC_MESSAGES/django.po (+96 -35)
📝 app/locale/pt_BR/LC_MESSAGES/django.po (+83 -39)
📝 app/templates/includes/navbar.html (+5 -2)
📝 app/templates/includes/scripts/hyperscript/init_date_picker.html (+4 -0)

...and 6 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/eitchtee/WYGIWYH/pull/164 **Author:** [@eitchtee](https://github.com/eitchtee) **Created:** 2/16/2025 **Status:** ✅ Merged **Merged:** 2/16/2025 **Merged by:** [@eitchtee](https://github.com/eitchtee) **Base:** `main` ← **Head:** `insights` --- ### 📝 Commits (10+) - [`a3a8791`](https://github.com/eitchtee/WYGIWYH/commit/a3a8791e9611cf7981cb8e7e45566b8d84a277f1) feat(insights): create app - [`9c55dac`](https://github.com/eitchtee/WYGIWYH/commit/9c55dac866ad46552eb6c57633be3b920341b19d) feat(insights): sankey diagram (WIP) - [`d0f2742`](https://github.com/eitchtee/WYGIWYH/commit/d0f2742637da2a6963175f10a225d05603542365) chore(frontend): install chartjs-chart-sankey - [`28b12fa`](https://github.com/eitchtee/WYGIWYH/commit/28b12faaf0f6e8d21482301f1f14a7d61915f1f4) fix(insights): sankey diagram inconsistent sizing - [`038438f`](https://github.com/eitchtee/WYGIWYH/commit/038438fba76766b7cb664dc37a5fe07c06d53ff7) insights (wip) - [`b53a4a0`](https://github.com/eitchtee/WYGIWYH/commit/b53a4a0286ed776380b28944fcbcbe620d87eac7) feat(insights): create app - [`02376ad`](https://github.com/eitchtee/WYGIWYH/commit/02376ad02b922b58dfdb7ba4c8c140ba6bd9d969) feat(insights): sankey diagram (WIP) - [`9c339fa`](https://github.com/eitchtee/WYGIWYH/commit/9c339faa72b58774d978238a31552c77865167e1) chore(frontend): install chartjs-chart-sankey - [`7a2acb6`](https://github.com/eitchtee/WYGIWYH/commit/7a2acb649716587111e08e2f66254165f83bb88f) fix(insights): sankey diagram inconsistent sizing - [`dd24fd5`](https://github.com/eitchtee/WYGIWYH/commit/dd24fd56d3c5eeba1fa0a858a3fbf2b5d192887e) insights (wip) ### 📊 Changes **26 files changed** (+1205 additions, -114 deletions) <details> <summary>View changed files</summary> 📝 `app/WYGIWYH/urls.py` (+1 -0) 📝 `app/apps/common/widgets/datepicker.py` (+53 -0) ➕ `app/apps/insights/__init__.py` (+0 -0) ➕ `app/apps/insights/admin.py` (+3 -0) ➕ `app/apps/insights/apps.py` (+6 -0) ➕ `app/apps/insights/forms.py` (+110 -0) ➕ `app/apps/insights/migrations/__init__.py` (+0 -0) ➕ `app/apps/insights/models.py` (+3 -0) ➕ `app/apps/insights/tests.py` (+3 -0) ➕ `app/apps/insights/urls.py` (+17 -0) ➕ `app/apps/insights/utils/__init__.py` (+0 -0) ➕ `app/apps/insights/utils/sankey.py` (+248 -0) ➕ `app/apps/insights/utils/transactions.py` (+96 -0) ➕ `app/apps/insights/views.py` (+94 -0) 📝 `app/apps/transactions/views/transactions.py` (+0 -2) 📝 `app/locale/de/LC_MESSAGES/django.po` (+83 -36) 📝 `app/locale/nl/LC_MESSAGES/django.po` (+96 -35) 📝 `app/locale/pt_BR/LC_MESSAGES/django.po` (+83 -39) 📝 `app/templates/includes/navbar.html` (+5 -2) 📝 `app/templates/includes/scripts/hyperscript/init_date_picker.html` (+4 -0) _...and 6 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
adam added the pull-request label 2025-12-29 00:19:06 +01:00
adam closed this issue 2025-12-29 00:19:06 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/WYGIWYH#229