monopyly 1.4.7__py3-none-any.whl → 1.5.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- monopyly/CHANGELOG.md +15 -0
- monopyly/README.md +1 -1
- monopyly/__init__.py +3 -3
- monopyly/_version.py +2 -2
- monopyly/auth/actions.py +7 -2
- monopyly/banking/actions.py +51 -10
- monopyly/banking/routes.py +2 -1
- monopyly/cli/apps.py +26 -24
- monopyly/cli/{run.py → launch.py} +19 -8
- monopyly/common/forms/_forms.py +56 -2
- monopyly/common/transactions.py +162 -0
- monopyly/credit/actions.py +29 -0
- monopyly/credit/forms.py +25 -0
- monopyly/credit/routes.py +97 -7
- monopyly/credit/transactions/_transactions.py +15 -0
- monopyly/credit/transactions/activity/__init__.py +3 -0
- monopyly/credit/transactions/activity/data.py +161 -0
- monopyly/credit/transactions/activity/parser.py +274 -0
- monopyly/credit/transactions/activity/reconciliation.py +456 -0
- monopyly/database/models.py +6 -0
- monopyly/static/css/style.css +1146 -263
- monopyly/static/img/icons/statement-pair.png +0 -0
- monopyly/static/img/icons/statement-thick.png +0 -0
- monopyly/static/img/icons/statement.png +0 -0
- monopyly/static/js/bind-tag-actions.js +1 -1
- monopyly/static/js/create-balance-chart.js +1 -1
- monopyly/static/js/create-category-chart.js +27 -0
- monopyly/static/js/define-filter.js +1 -1
- monopyly/static/js/expand-transaction.js +10 -0
- monopyly/static/js/highlight-discrepant-transactions.js +124 -0
- monopyly/static/js/modules/expand-transaction.js +12 -3
- monopyly/static/js/modules/form-suggestions.js +60 -0
- monopyly/static/js/modules/manage-overlays.js +1 -3
- monopyly/static/js/show-credit-activity-loader.js +29 -0
- monopyly/static/js/toggle-navigation.js +35 -0
- monopyly/static/js/update-card-status.js +1 -1
- monopyly/static/js/use-suggested-amount.js +11 -0
- monopyly/static/js/use-suggested-merchant.js +11 -0
- monopyly/templates/banking/account_page.html +3 -1
- monopyly/templates/banking/account_summaries.html +1 -1
- monopyly/templates/banking/accounts_page.html +11 -15
- monopyly/templates/banking/transactions_table/expanded_row_content.html +18 -20
- monopyly/templates/common/transaction_form/subtransaction_subform.html +10 -1
- monopyly/templates/common/transactions_table/linked_bank_transaction.html +1 -1
- monopyly/templates/common/transactions_table/linked_credit_transaction.html +1 -1
- monopyly/templates/common/transactions_table/transaction_condensed.html +2 -2
- monopyly/templates/common/transactions_table/transaction_expanded.html +3 -3
- monopyly/templates/common/transactions_table/transactions.html +1 -1
- monopyly/templates/core/credits.html +10 -8
- monopyly/templates/core/index.html +10 -0
- monopyly/templates/core/profile.html +1 -1
- monopyly/templates/core/story.html +42 -27
- monopyly/templates/credit/statement_page.html +33 -0
- monopyly/templates/credit/statement_reconciliation/discrepant_records.html +25 -0
- monopyly/templates/credit/statement_reconciliation/statement_reconciliation_inquiry.html +23 -0
- monopyly/templates/credit/statement_reconciliation/statement_reconciliation_page.html +86 -0
- monopyly/templates/credit/statement_reconciliation/summary.html +45 -0
- monopyly/templates/credit/statement_reconciliation/unrecorded_activities.html +24 -0
- monopyly/templates/credit/statement_summary.html +2 -2
- monopyly/templates/credit/statements.html +1 -1
- monopyly/templates/credit/transaction_form/transaction_form.html +9 -1
- monopyly/templates/credit/transaction_form/transaction_form_page.html +2 -0
- monopyly/templates/credit/transaction_form/transaction_form_page_update.html +9 -0
- monopyly/templates/credit/transaction_submission_page.html +8 -0
- monopyly/templates/credit/transactions_table/expanded_row_content.html +18 -12
- monopyly/templates/layout.html +46 -29
- {monopyly-1.4.7.dist-info → monopyly-1.5.0.dist-info}/METADATA +3 -2
- {monopyly-1.4.7.dist-info → monopyly-1.5.0.dist-info}/RECORD +72 -56
- monopyly-1.5.0.dist-info/entry_points.txt +2 -0
- monopyly/static/img/icons/statement-pair.svg +0 -281
- monopyly/static/img/icons/statement.svg +0 -294
- monopyly-1.4.7.dist-info/entry_points.txt +0 -2
- {monopyly-1.4.7.dist-info → monopyly-1.5.0.dist-info}/WHEEL +0 -0
- {monopyly-1.4.7.dist-info → monopyly-1.5.0.dist-info}/licenses/COPYING +0 -0
- {monopyly-1.4.7.dist-info → monopyly-1.5.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: monopyly
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.5.0
|
|
4
4
|
Summary: A homemade personal finance manager.
|
|
5
5
|
Project-URL: Download, https://pypi.org/project/monopyly
|
|
6
6
|
Project-URL: Homepage, http://monopyly.com
|
|
@@ -29,6 +29,7 @@ Requires-Dist: flask==3.0.3
|
|
|
29
29
|
Requires-Dist: fuisce==1.0.2
|
|
30
30
|
Requires-Dist: gunicorn==22.0.0
|
|
31
31
|
Requires-Dist: markdown==3.6
|
|
32
|
+
Requires-Dist: nltk==3.8.1
|
|
32
33
|
Requires-Dist: python-dateutil==2.9.0
|
|
33
34
|
Requires-Dist: rich==13.7.1
|
|
34
35
|
Requires-Dist: sqlalchemy==2.0.29
|
|
@@ -58,7 +59,7 @@ To install the app, simply run
|
|
|
58
59
|
$ pip install monopyly
|
|
59
60
|
```
|
|
60
61
|
|
|
61
|
-
The package requires a recent version of Python (3.
|
|
62
|
+
The package requires a recent version of Python (3.10+).
|
|
62
63
|
|
|
63
64
|
|
|
64
65
|
## Getting started
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
monopyly/CHANGELOG.md,sha256=
|
|
2
|
-
monopyly/README.md,sha256=
|
|
3
|
-
monopyly/__init__.py,sha256=
|
|
4
|
-
monopyly/_version.py,sha256=
|
|
5
|
-
monopyly/auth/actions.py,sha256=
|
|
1
|
+
monopyly/CHANGELOG.md,sha256=Jk6ffjpSKjzEAD-g3u9U6Iwo4Ip7XayERdLQCQdcyP0,7680
|
|
2
|
+
monopyly/README.md,sha256=cm1wli7E-xybYoJr-tsrNgfIO6TPrLsraMUSO26D6xk,9028
|
|
3
|
+
monopyly/__init__.py,sha256=2UPhNvpvhuafUZwgSGJEIaOj9LIXzrRO-S8dfB4-FeQ,2203
|
|
4
|
+
monopyly/_version.py,sha256=PJLsF_U86F0-FKJiqQYvlSYbBBNG6Ou_GDrNAk-8CDw,160
|
|
5
|
+
monopyly/auth/actions.py,sha256=zFDb_EATufsJMzQ4rX0bzlme8e62mXFpYtQvc_k0jEc,375
|
|
6
6
|
monopyly/auth/blueprint.py,sha256=sFbmTvSBhjv1pn2gJLH5J6zanPLuemmWbgEj5ZKCiTY,244
|
|
7
7
|
monopyly/auth/routes.py,sha256=mODJHrdFhffusfbYwQ_wpIY7eAE7Gh7irosIef4Mluc,2902
|
|
8
8
|
monopyly/auth/tools.py,sha256=hifCHBN06Ht-FnMhJPzzj-xjMN8uwbeJ-azRVjnT99c,801
|
|
9
9
|
monopyly/banking/accounts.py,sha256=yYlXvyhLBQoBZYr_WMk6_3nxlhwU4NEkCYKv5hHFjcM,9828
|
|
10
|
-
monopyly/banking/actions.py,sha256=
|
|
10
|
+
monopyly/banking/actions.py,sha256=NvButozWJNRuNIiyM-Gy88XLTpIjNcEGSQcLMfEwOUg,3258
|
|
11
11
|
monopyly/banking/banks.py,sha256=X1seKJrec-o8z-bM0wVTR42vMx1q5A9Lf2jNUtINlrQ,1745
|
|
12
12
|
monopyly/banking/blueprint.py,sha256=PDsqe4DmiT7cDYW9IxxTfizu9Lqol1Lhp7ajMK6fUuI,255
|
|
13
13
|
monopyly/banking/filters.py,sha256=wCsAUh592B5BmGFC9NqmrJZ0NdQZi21hvy0QsKqhgLg,685
|
|
14
14
|
monopyly/banking/forms.py,sha256=p-YGZgdKugk3VKILLiQNEH5KQmXop5G8P1Bs4sUqbK0,10506
|
|
15
|
-
monopyly/banking/routes.py,sha256=
|
|
15
|
+
monopyly/banking/routes.py,sha256=mykWVtV_4f096-NWDWE5aPYoBvGjeNpBSyY9Kb_nQGc,8232
|
|
16
16
|
monopyly/banking/transactions.py,sha256=2_wFXl4ZrHzLoFGz72ksYA2_8UvB0N1wtBFd8kTwTyQ,8454
|
|
17
|
-
monopyly/cli/apps.py,sha256=
|
|
18
|
-
monopyly/cli/
|
|
19
|
-
monopyly/common/transactions.py,sha256=
|
|
17
|
+
monopyly/cli/apps.py,sha256=4oqsrDUsD3aX90YCHIsdHQy9OHaUxkstgvR6sIDw-AY,3459
|
|
18
|
+
monopyly/cli/launch.py,sha256=nPCW3Yx4e35sAQ_K6YH3pqmWCdvnt-NHG90hUV7QKPg,4103
|
|
19
|
+
monopyly/common/transactions.py,sha256=AEe86_XoDHzTaGEN5ByzPo0dQD6tA9dq3M9TCHMYPvE,18080
|
|
20
20
|
monopyly/common/utils.py,sha256=BjXhfNXGWkAPt-ebldvmZ2z00P8MhKJzjxrJJ6mzRQY,5867
|
|
21
21
|
monopyly/common/forms/__init__.py,sha256=6iFTlcoaQmCbrjS1KfFhWXQUfyqnA-vKPMVxLyJMlXY,120
|
|
22
|
-
monopyly/common/forms/_forms.py,sha256=
|
|
22
|
+
monopyly/common/forms/_forms.py,sha256=wlLY9pBtFYcOEnFL_dnt62JFtbs88u_B9LXN2eTe_PA,10130
|
|
23
23
|
monopyly/common/forms/fields.py,sha256=XgvkfszpUAZyIs-osHGFADmzuo0Ni_e78NXtG-grBdI,4082
|
|
24
24
|
monopyly/common/forms/utils.py,sha256=awZOtWaohzSW_SZrXhUpJBY1AXPnKBFTG2cqim22Db0,5676
|
|
25
25
|
monopyly/common/forms/validators.py,sha256=C5_NN8ktvBw6MrSXwv_x9_SQohCNmnp4brNQFELHBlI,1205
|
|
@@ -34,21 +34,25 @@ monopyly/core/filters.py,sha256=uBkNjQyqW-9RkiQG23vngnI1MZXFeh4Rhe5MQqklAEQ,1284
|
|
|
34
34
|
monopyly/core/internal_transactions.py,sha256=PImeViMU9rdDDPLXld1xC6bdAoulzRDr0zci4pUQY8I,459
|
|
35
35
|
monopyly/core/routes.py,sha256=ADF7LB3hhvwPwIqc5l46sliziM7ZgGXh5vFwKzxlkGA,2747
|
|
36
36
|
monopyly/credit/accounts.py,sha256=otQmuTDJZYX868EZl80n89XlzfiwlnBkfSXZa65rSqI,1898
|
|
37
|
-
monopyly/credit/actions.py,sha256=
|
|
37
|
+
monopyly/credit/actions.py,sha256=eNtowA16zfP8gmo93H9_LbARJ0JKxhihqy3OhX0bwpQ,7211
|
|
38
38
|
monopyly/credit/blueprint.py,sha256=XbrMhtyCp2732uWPB2kjn_W8P8pH8RVTwo9P8Pt--Is,251
|
|
39
39
|
monopyly/credit/cards.py,sha256=9Ug51aY2-G8SzooLC-FemRNeTBLd9JOpXHFW74EcdLU,5614
|
|
40
|
-
monopyly/credit/forms.py,sha256
|
|
41
|
-
monopyly/credit/routes.py,sha256=
|
|
40
|
+
monopyly/credit/forms.py,sha256=cs7-uL8Q9mUPUCsPVGo32gYwJpF3wfsHwmDfLBQWNnI,13636
|
|
41
|
+
monopyly/credit/routes.py,sha256=qghi2_rx-IHFsVN99Ovd2hjCxC89vmE-eSTiCnjqJ44,21408
|
|
42
42
|
monopyly/credit/statements.py,sha256=lRcAgcr9kPnh5GCE6McWfOdY8uCgmg2j2bikSioR3HI,7219
|
|
43
43
|
monopyly/credit/transactions/__init__.py,sha256=1Exn6T--HtwNCHzS_hDJ0ba7qCB7w_8C-yY3KSxvFKg,165
|
|
44
|
-
monopyly/credit/transactions/_transactions.py,sha256=
|
|
44
|
+
monopyly/credit/transactions/_transactions.py,sha256=V4gLI6HpiuNppNV5xmJBsPU1YL59HyiNLbh3U2LAvbU,9222
|
|
45
|
+
monopyly/credit/transactions/activity/__init__.py,sha256=Iq5KLXdCf1UCfM9qDRXbYCaz1NmgJMCApK4kGDNJISo,139
|
|
46
|
+
monopyly/credit/transactions/activity/data.py,sha256=6ND7fz5L1aH2g_2drGz2Xf7maUaJ6RyItLdBeWXBIlA,5849
|
|
47
|
+
monopyly/credit/transactions/activity/parser.py,sha256=mvDq6jpLs1Bbma0G-YP1G5prpAltgMd3YTzKg46TNc0,11166
|
|
48
|
+
monopyly/credit/transactions/activity/reconciliation.py,sha256=cHcqXAp63hHrNkeb3WoX0bGnJbzrOfe6uKF6L2CF9y0,18798
|
|
45
49
|
monopyly/database/__init__.py,sha256=tlZsXmzH8hB5m_RASbKTjPRqLel-xbymqrzo0TPoFCk,3402
|
|
46
|
-
monopyly/database/models.py,sha256=
|
|
50
|
+
monopyly/database/models.py,sha256=nnO6dyf7IJOp3dwIoPrWECnWlRPdocfrMqSD_tT1OSg,15319
|
|
47
51
|
monopyly/database/preloads.sql,sha256=KBS_WYRofFdOVN-IgHzZhfyJrY6ZOwHeExN-fQr3htU,363
|
|
48
52
|
monopyly/database/schema.sql,sha256=cdl9b5CnYrnQ-lck147GtwArx_JJbX1vF9YYLivTeyw,4660
|
|
49
53
|
monopyly/database/views.sql,sha256=UTO2QRkVTfQ12bMVkR-O6Qv80DvYo8hngPHn2A1_1F8,3853
|
|
50
54
|
monopyly/static/jquery-3.7.0.min.js,sha256=2Pmvv0kuTBOenSvLm6bvfBSSHrUJ-3A7x6P5Ebd07_g,87462
|
|
51
|
-
monopyly/static/css/style.css,sha256=
|
|
55
|
+
monopyly/static/css/style.css,sha256=umkVrUYseu8cPuf2Btt9vs-rTJjeIRo7XcQA2WUs2iM,70040
|
|
52
56
|
monopyly/static/favicon/browserconfig.xml,sha256=Zt_AVOxiritWWXoUwPsHpx4vu4kM_butdFVzoYCYbM8,315
|
|
53
57
|
monopyly/static/favicon/favicon-114.png,sha256=kjElVFiix-kFCMdADkLpJsi8kL3GDsFm85oJhyCH-C0,20601
|
|
54
58
|
monopyly/static/favicon/favicon-120.png,sha256=g4uzHMdW0MlJhcgWfrOsj2MB2D-HdLa4t60_hvyICkM,22077
|
|
@@ -101,51 +105,58 @@ monopyly/static/img/icons/refresh.png,sha256=AbaA1DPn-x71TRrBFnOY20DnbZhJaw33XrC
|
|
|
101
105
|
monopyly/static/img/icons/save.png,sha256=cX6bGcA-eY2eVttZHnfQ_xeSPjBBMHaCDybpUZSuY7U,27520
|
|
102
106
|
monopyly/static/img/icons/sort-asc.png,sha256=yNpPunW0TQ4rkvXJ14JhdW7F7C_2Dn4MMtl9P2iGj30,13596
|
|
103
107
|
monopyly/static/img/icons/sort-desc.png,sha256=FxVL24ylHvEXYjRH6U_Rj8PKxWp0MWNUja4j6wxDENA,13302
|
|
104
|
-
monopyly/static/img/icons/statement-pair.
|
|
105
|
-
monopyly/static/img/icons/statement.png,sha256=3OkDcfvEgsmEgasS3cbd6lIv-Pa5kPqMps_ynDCm-gg,26146
|
|
106
|
-
monopyly/static/img/icons/statement.
|
|
108
|
+
monopyly/static/img/icons/statement-pair.png,sha256=tjI4ToeozUJkkqEa8hGjfRQm82flsyH7l2BpU7NuWBk,20839
|
|
109
|
+
monopyly/static/img/icons/statement-thick.png,sha256=3OkDcfvEgsmEgasS3cbd6lIv-Pa5kPqMps_ynDCm-gg,26146
|
|
110
|
+
monopyly/static/img/icons/statement.png,sha256=x9y4Wqm8zMqen4Q5WkhTPQAEa3uSFfluKzU2YdKZNj8,20292
|
|
107
111
|
monopyly/static/img/icons/x-thick.png,sha256=Fs9bVUFDVUCjWZQbicFGYZMcsUwerxf6KlXPSBHkKfc,38482
|
|
108
112
|
monopyly/static/js/add-subtransaction.js,sha256=BoLvpahd__YHOwodqJXg10OCY7CJJX0k7yJpYAVW9iw,1465
|
|
109
113
|
monopyly/static/js/add-transfer.js,sha256=_ywQju13wGWTeZMqJXJzVbfquQJhcbDnJQ9EC3R01xM,1384
|
|
110
114
|
monopyly/static/js/autocomplete-transaction.js,sha256=pZQ7v04WEHcJ7riPparhdF70W3ZDSz9Z0j0N_OVgZ9k,2753
|
|
111
|
-
monopyly/static/js/bind-tag-actions.js,sha256=
|
|
112
|
-
monopyly/static/js/create-balance-chart.js,sha256=
|
|
113
|
-
monopyly/static/js/
|
|
115
|
+
monopyly/static/js/bind-tag-actions.js,sha256=ReOHoY9Ngsqe7rvH0x0TvgNNbmEuAOKx3HIdLSYXMhk,3619
|
|
116
|
+
monopyly/static/js/create-balance-chart.js,sha256=xaRxJvPSL0j5JKG1uYI7deYfqfc2Tw4mUdJk3rSlk3I,2446
|
|
117
|
+
monopyly/static/js/create-category-chart.js,sha256=h17FlFj2eo1MK2VXwuw7U58dWDj4iukYuLnllMOuGhU,514
|
|
118
|
+
monopyly/static/js/define-filter.js,sha256=nz64sha6G9QXOyVEqxd_xYK0F_fXxzXxIHiQfpvUo7A,1133
|
|
114
119
|
monopyly/static/js/display-new-account-type-inputs.js,sha256=iHh7zSnyHc_-FIPO1Uuffjd8mFvfqfECMzO34FB_WF4,555
|
|
115
120
|
monopyly/static/js/display-new-bank-inputs.js,sha256=yI6wOof9aMI_8k06hSzPszzb1SOvf0WTHyEwiiJnIt4,472
|
|
116
121
|
monopyly/static/js/display-new-credit-account-inputs.js,sha256=iDlAANPZWQ2pjBcNJ8KvYn91DwBxz-hr4FzKCTayXaY,798
|
|
117
122
|
monopyly/static/js/expand-bank-account.js,sha256=sz5Cj5c8pW0lXYqqurrPWr-HZKNjrTzDffwTZR8eKyg,596
|
|
118
123
|
monopyly/static/js/expand-bank.js,sha256=vb1DTCOidQgQzX0FC-7Zwk-Poc-e38mpORgWG_LtczM,558
|
|
119
|
-
monopyly/static/js/expand-transaction.js,sha256=
|
|
124
|
+
monopyly/static/js/expand-transaction.js,sha256=wfql6MjA6LP1bSob4MUUREkHLhAFbcbH0pQAdbouObE,984
|
|
120
125
|
monopyly/static/js/flip-card.js,sha256=4a65JFO7kf4qzZ-8wvWiiO_BwZpiWO2cHHzZugXRoAQ,720
|
|
121
126
|
monopyly/static/js/hide-homepage-block.js,sha256=Yw3m5sc5dO6pDh2VUzJu1re4NXZcuSLSMs6Acou_rHo,495
|
|
127
|
+
monopyly/static/js/highlight-discrepant-transactions.js,sha256=jnbs6HSh4Byq46xJuDNseGHOnf_KuVH-wYRr_dsj_Y8,4188
|
|
122
128
|
monopyly/static/js/infer-card.js,sha256=WIDXWhfF4gXdlRCo2OA0IpSsszxDTkV7ZSb6Qo7pheA,1790
|
|
123
129
|
monopyly/static/js/infer-statement.js,sha256=ufcYJ2z6halVXpiZHviI_4JN48jOBAM4NbSDtWH9BoU,1896
|
|
124
130
|
monopyly/static/js/make-payment.js,sha256=fvCSHrsUuRFJ299icIklEch8SQLnYL2cfcTwkW4fzw4,3276
|
|
131
|
+
monopyly/static/js/show-credit-activity-loader.js,sha256=glNYtiL4R8Rko1K6Og6KB9a7tKlbMRos35vedp42Zjk,815
|
|
125
132
|
monopyly/static/js/show-linked-transaction.js,sha256=AM7d2PISUMbS2UcSNZQuW8n24pcDG0hD8BjFjAyWUOk,1085
|
|
133
|
+
monopyly/static/js/toggle-navigation.js,sha256=AlRoA3TzadwyCVKiv_BlplHkROlZg-XaHK7XkIYe0Wo,1014
|
|
126
134
|
monopyly/static/js/update-account-statement-parameters.js,sha256=1mjC-9yIwbm-xYz9AKkxfKWv70UftqyieJrMkSMb1qU,1072
|
|
127
135
|
monopyly/static/js/update-bank-name.js,sha256=4nEkCTEK32y9v7WAgjQymKFxM_HTFRwdfGkmEwtdWoE,925
|
|
128
|
-
monopyly/static/js/update-card-status.js,sha256=
|
|
136
|
+
monopyly/static/js/update-card-status.js,sha256=3Ecdz4c4KYsyaJtqU0YmiOSoLB4ceiWR6f3SCKWpCq8,1296
|
|
129
137
|
monopyly/static/js/update-statement-parameters.js,sha256=Mb8WN1BZZeoGn-9TTDDU_vULBemttersznpjQksT5X8,792
|
|
130
138
|
monopyly/static/js/update-statements-display.js,sha256=aaOa254und1lkzGIL8uDiezGpY6iUqKFtxTWdfRBFQA,1321
|
|
131
139
|
monopyly/static/js/update-transactions-display.js,sha256=LvE0pu4rO0SmilhejcXfeoUWvnj3YF6KMPj2Al9Ovu8,2408
|
|
140
|
+
monopyly/static/js/use-suggested-amount.js,sha256=O8CJ-GF3YUV9cSa6hJUFGZiePWhoZxykrr5LVhA3Jls,272
|
|
141
|
+
monopyly/static/js/use-suggested-merchant.js,sha256=KJdz5zYGaQlbPMdl32JY_k3wdIYrHF0QMtzqNNJC6RY,269
|
|
132
142
|
monopyly/static/js/modules/ajax.js,sha256=nIVPaedJ-KanhEqsF74K5Zo89SFHg1eEC7FFa4etbNw,759
|
|
133
143
|
monopyly/static/js/modules/autocomplete-input.js,sha256=cJJSP-pv7F9SL6cCudYMjMKIp7h7YzFrmeKg00tPPNo,8035
|
|
134
144
|
monopyly/static/js/modules/expand-box-row.js,sha256=KO7ojKhEYB52wQLDHB2hRUEGGtukjpdpHMJMNM5nr40,708
|
|
135
|
-
monopyly/static/js/modules/expand-transaction.js,sha256=
|
|
145
|
+
monopyly/static/js/modules/expand-transaction.js,sha256=0YqRbjtLYIs0AYUij0nFxh4gBS80O7Wk1Q3GkhCiZQU,4183
|
|
146
|
+
monopyly/static/js/modules/form-suggestions.js,sha256=RIeHMkHkAKDoXm5xp914GbNdIDAaKOoLEANw4oQx9nY,1341
|
|
136
147
|
monopyly/static/js/modules/manage-acquisition-form.js,sha256=hJCg5Fc2UXDgRL-jFIirKeYQ4vFvlG6IfLE_zH_Ety0,2089
|
|
137
|
-
monopyly/static/js/modules/manage-overlays.js,sha256=
|
|
148
|
+
monopyly/static/js/modules/manage-overlays.js,sha256=nl-UlmZh22RnX648Nb_ybpt0Wfi3xDQsM8Wg-cGPTJE,1832
|
|
138
149
|
monopyly/static/js/modules/manage-subforms.js,sha256=-yKA7l8ZI0294auTI307LrKkw_Bl6I8suwK4VLuLhMc,2197
|
|
139
150
|
monopyly/static/js/modules/update-database-widget.js,sha256=S67hmqaGwzbPy94IjYrag0ZPOur4r5y_tb3_5t7xuYI,1581
|
|
140
151
|
monopyly/static/js/modules/update-display-ajax.js,sha256=MJBiRMmeIHRG7lLbqIcXkUecKNNMFFVJXwhs_N8LKl0,878
|
|
141
|
-
monopyly/templates/layout.html,sha256=
|
|
152
|
+
monopyly/templates/layout.html,sha256=DyjxrIt5iz2LYHebaU1p1Y6NPEhMsGY-BVBjg8quUBY,5734
|
|
142
153
|
monopyly/templates/auth/login.html,sha256=aZwaHBiKtQa_ZkVBqLUQIbwQdEAJNwcyYNjFQcRp-k0,443
|
|
143
154
|
monopyly/templates/auth/register.html,sha256=G6VxfYPIbXQco6Z_1PVQQ40vNWgG3PScmN20npx88yQ,447
|
|
144
|
-
monopyly/templates/banking/account_page.html,sha256=
|
|
145
|
-
monopyly/templates/banking/account_summaries.html,sha256=
|
|
155
|
+
monopyly/templates/banking/account_page.html,sha256=Y2lZrzXFdykDkkPK9-FktGPq6i-94hV_Me1BM-MzxXU,2002
|
|
156
|
+
monopyly/templates/banking/account_summaries.html,sha256=GCMIFF6bYOwzPyw8gxKo8mAJ7QzmvyB2d8moEgzqki4,1139
|
|
146
157
|
monopyly/templates/banking/account_summaries_page.html,sha256=puBlB52WMZR_Dhz6_rSLomNa9QSChsItsshrKT5Aixs,1113
|
|
147
158
|
monopyly/templates/banking/account_summary.html,sha256=pE5DyrLP2MYewsECpP0iVusTlIunWe4tiLjSwGMV9uA,939
|
|
148
|
-
monopyly/templates/banking/accounts_page.html,sha256=
|
|
159
|
+
monopyly/templates/banking/accounts_page.html,sha256=4upvqJGWunJw3W8v_S8d7U003jff9mJ2tI7GStL-8Ms,2152
|
|
149
160
|
monopyly/templates/banking/account_form/account_form.html,sha256=v8AH6DTBW-4XVffcmr-sRRBl1k0e-30Q7Vy5sXHkrPM,1226
|
|
150
161
|
monopyly/templates/banking/account_form/account_form_page_new.html,sha256=aCahQlbJfIM_vzvHJb81dG_ORpXFmOw5QzYFNep7LxY,533
|
|
151
162
|
monopyly/templates/banking/transaction_form/bank_info_form.html,sha256=RkEjEgbD5zw4QlvpJ6koA8TxE0ZRTGmfmCy8SC2RVd0,670
|
|
@@ -155,24 +166,24 @@ monopyly/templates/banking/transaction_form/transaction_form_page_new.html,sha25
|
|
|
155
166
|
monopyly/templates/banking/transaction_form/transaction_form_page_update.html,sha256=4PljOpO7wTNNEq-mhFzA-uHvUxzerfRMbDddWvSMzlo,350
|
|
156
167
|
monopyly/templates/banking/transaction_form/transfer_form.html,sha256=ar3ttK7kgEWQpvnD23-ud8OcLPgtvGDrKRIp4UWGoQw,168
|
|
157
168
|
monopyly/templates/banking/transactions_table/condensed_row_content.html,sha256=5eHwrdoGxNouRWSPe-NxTtvcpiZafw1WPSR_d_O3YTc,416
|
|
158
|
-
monopyly/templates/banking/transactions_table/expanded_row_content.html,sha256=
|
|
169
|
+
monopyly/templates/banking/transactions_table/expanded_row_content.html,sha256=WaGZ6doBs0FmCe1Bqbxb2q613D8A-idTTzxy2xF4T5g,1405
|
|
159
170
|
monopyly/templates/banking/transactions_table/transaction_field_titles.html,sha256=WvjcRAByg1xSHqfNEkcJYB1eFnNfm4-qfHZben_YApI,600
|
|
160
171
|
monopyly/templates/banking/transactions_table/transactions.html,sha256=emId66z4LXyOF1xdiJIAwrGqE4WSY-iv03yZF4kye1k,486
|
|
161
172
|
monopyly/templates/common/form_page.html,sha256=Sx2Y6dhNsjkDQBaepTBPBvVeIe7N730llhgbcAQOrCk,107
|
|
162
173
|
monopyly/templates/common/transaction_form/subform.html,sha256=BjwJA0-ZOeBhrLdZAkddl5F5ElMN2MSykD2hZu8PNEA,370
|
|
163
|
-
monopyly/templates/common/transaction_form/subtransaction_subform.html,sha256=
|
|
174
|
+
monopyly/templates/common/transaction_form/subtransaction_subform.html,sha256=WBCGnkKNGC0x7KSJeKA1g8Xbm5sO9N3jY5Nt2WiWpUk,827
|
|
164
175
|
monopyly/templates/common/transaction_form/transaction_form_page.html,sha256=gZ7uWIgaVo67m4F9cgXnrjwQ3_nEk_F2E1jT_C1yy8s,294
|
|
165
|
-
monopyly/templates/common/transactions_table/linked_bank_transaction.html,sha256=
|
|
166
|
-
monopyly/templates/common/transactions_table/linked_credit_transaction.html,sha256=
|
|
176
|
+
monopyly/templates/common/transactions_table/linked_bank_transaction.html,sha256=ffqchNhXlxy-CytPFGZbathD4dOSF4Qb8MsTyCF4nqU,893
|
|
177
|
+
monopyly/templates/common/transactions_table/linked_credit_transaction.html,sha256=SpZS7CKO4IbVf2wbEi29TngIWNeVRIJZXt7ZDxCUI-M,795
|
|
167
178
|
monopyly/templates/common/transactions_table/linked_transaction_overlay.html,sha256=oqXGBdQaVvS9LPUKZrCqDMLO5F9aUtf-Npf-lR7ccIQ,1119
|
|
168
179
|
monopyly/templates/common/transactions_table/subtransactions.html,sha256=6vf9M2jMDVHDbGoI6GToKf1mgDw7VS1aYbNu4Ol_saw,492
|
|
169
|
-
monopyly/templates/common/transactions_table/transaction_condensed.html,sha256=
|
|
170
|
-
monopyly/templates/common/transactions_table/transaction_expanded.html,sha256=
|
|
171
|
-
monopyly/templates/common/transactions_table/transactions.html,sha256=
|
|
172
|
-
monopyly/templates/core/credits.html,sha256=
|
|
173
|
-
monopyly/templates/core/index.html,sha256=
|
|
174
|
-
monopyly/templates/core/profile.html,sha256=
|
|
175
|
-
monopyly/templates/core/story.html,sha256=
|
|
180
|
+
monopyly/templates/common/transactions_table/transaction_condensed.html,sha256=V-HAol3kEMvIiAEmCU0jmdbDwOzzoQGV3thMGxEGtXw,364
|
|
181
|
+
monopyly/templates/common/transactions_table/transaction_expanded.html,sha256=mLUg9lSMEtoRwqHoheUObj-wrj9Xo2MvsBkkuZLVcHo,1261
|
|
182
|
+
monopyly/templates/common/transactions_table/transactions.html,sha256=a0kUH1tZB9Ilsvf1MpOtRJiHB9ddFJq7q_-zPtpO4Is,531
|
|
183
|
+
monopyly/templates/core/credits.html,sha256=5XO5foZ_J1RA42BEOzN20bZRcWm9xhZe125BCKudoUc,1166
|
|
184
|
+
monopyly/templates/core/index.html,sha256=02iQ1feV47EIG2nPGR4n2ANp8L1Jg1DEC52ievARnm8,4684
|
|
185
|
+
monopyly/templates/core/profile.html,sha256=26DZ0fXogpZ9XEpXo5ChaRen6sMiKkVh8lN_Xd2Ffcc,2363
|
|
186
|
+
monopyly/templates/core/story.html,sha256=iEKfX1aHxXrstAeeQ6J8Gnvg1zGt95c-iLELUhG-AtE,3331
|
|
176
187
|
monopyly/templates/core/errors/400.html,sha256=whUYO3b6UIQWfN8y563umccU8GLxqXu0A5nb5uNM-XY,152
|
|
177
188
|
monopyly/templates/core/errors/401.html,sha256=3HH9TSDZfhyxZVcVnT0PNe524ADvEHIj6BsllQYFFOQ,154
|
|
178
189
|
monopyly/templates/core/errors/403.html,sha256=SSJsDIKFFKqap5RR4oM7IsvWY6dsgfZVPPKPSpB2d6A,155
|
|
@@ -187,31 +198,36 @@ monopyly/templates/credit/account_page.html,sha256=HxQzRfEejFXjmZwtZD-EdHipQ7zOe
|
|
|
187
198
|
monopyly/templates/credit/card_submission_page.html,sha256=7OU6PB01jACSKSzXGySWL8ccwfCT00SeX2KkdwW3K4Q,345
|
|
188
199
|
monopyly/templates/credit/cards.html,sha256=lvuKip2nHDmPi2Wj8zmO9ZXKXY22Dlv9fDrtHuYCSqA,598
|
|
189
200
|
monopyly/templates/credit/cards_page.html,sha256=HTrTQwF-Y5Z9oWqt72i6HbAaRhQibTEt3TJKavm6_2M,250
|
|
190
|
-
monopyly/templates/credit/statement_page.html,sha256=
|
|
191
|
-
monopyly/templates/credit/statement_summary.html,sha256=
|
|
192
|
-
monopyly/templates/credit/statements.html,sha256=
|
|
201
|
+
monopyly/templates/credit/statement_page.html,sha256=8diukPI-8ip6fDI4DRbRlEsfkKVp0OyGspfUXJpL1fg,3097
|
|
202
|
+
monopyly/templates/credit/statement_summary.html,sha256=4DkqlN1yKIhFYFUSxmbf997Jk7SmIa110qZZZhdNkOg,2857
|
|
203
|
+
monopyly/templates/credit/statements.html,sha256=ndCGe4xEj9aFfKPSrr1fnTyKKU-KxGRLq0iJTeJnDvc,1783
|
|
193
204
|
monopyly/templates/credit/statements_page.html,sha256=s_CSiRO8iTcCoEPVRF2TEOG2XNOeuGF1BSiJGhrH5O0,1458
|
|
194
205
|
monopyly/templates/credit/tags_page.html,sha256=mKm-QxuicO5MO12JOQy7tuc8Bd9fnnKiTSHDmMP5mTI,662
|
|
195
|
-
monopyly/templates/credit/transaction_submission_page.html,sha256=
|
|
206
|
+
monopyly/templates/credit/transaction_submission_page.html,sha256=2N9oycKIPrXWXBOkzXcaRhiSsj46l1KEsRUyJjknm8o,2289
|
|
196
207
|
monopyly/templates/credit/transactions_page.html,sha256=4Tx2yUGPUIRfz0M3vAQqjcfHAPvsVXdiD0k9N1O3B0Q,2391
|
|
197
208
|
monopyly/templates/credit/card_form/card_form.html,sha256=xF7x1RBQyAfKYuW_cRxwhKhug4tum-3s0YHyP0ovhFs,1666
|
|
198
209
|
monopyly/templates/credit/card_form/card_form_page_new.html,sha256=9ayX0dUEAbSSPVL3vIKIBJYkN8odL_KHOfq3fl6C8yw,525
|
|
199
210
|
monopyly/templates/credit/card_form/transfer_statement_inquiry.html,sha256=LuxietZsTLF3AMqeeHqcPoAYvJX_TsJ8MlDldpZwpoQ,1228
|
|
200
211
|
monopyly/templates/credit/card_graphic/card_back.html,sha256=gfr3975mziF0PCd_f2Jy83Y4ktFeFnZ1icVVpiVwoQA,889
|
|
201
212
|
monopyly/templates/credit/card_graphic/card_front.html,sha256=I53u0WvrQj-m2D-fkcga0GRketfpMuMXNM6Rs0e5CNA,679
|
|
213
|
+
monopyly/templates/credit/statement_reconciliation/discrepant_records.html,sha256=IMnLShpED8CcXYA3jrQoz4Fc2v0s6i1Fl1OAUY9pjGw,837
|
|
214
|
+
monopyly/templates/credit/statement_reconciliation/statement_reconciliation_inquiry.html,sha256=a1fpLfQWSDjmwx_1k71lpH-QN8xAnZsW0VNc7ODrizs,895
|
|
215
|
+
monopyly/templates/credit/statement_reconciliation/statement_reconciliation_page.html,sha256=B1mWqXvLIc9tPod-24HsVWVCsIKp6vBp71a5Mo322gA,2779
|
|
216
|
+
monopyly/templates/credit/statement_reconciliation/summary.html,sha256=yDNREcWbCbvmVRSbMVst2YnyLoLrd-5sgG2bWzsNAF4,1804
|
|
217
|
+
monopyly/templates/credit/statement_reconciliation/unrecorded_activities.html,sha256=wCgqgaih413A9RkyARGIQ9OMqaA2POkL57P-wkfG47k,836
|
|
202
218
|
monopyly/templates/credit/tag_tree/subtag_tree.html,sha256=wMt4BbLIxkioQiWmdIcEVD1xz21uuXtSB08VxJUPB2I,580
|
|
203
219
|
monopyly/templates/credit/tag_tree/tag_tree.html,sha256=cAsYpZWfguZWivALn4hE8fRVD6YsSvmIzRg2g5RSJTg,345
|
|
204
|
-
monopyly/templates/credit/transaction_form/transaction_form.html,sha256=
|
|
205
|
-
monopyly/templates/credit/transaction_form/transaction_form_page.html,sha256=
|
|
220
|
+
monopyly/templates/credit/transaction_form/transaction_form.html,sha256=_2tYKMqmLE1Yqu9Pk94nOYuCxt3ZXGW8wDboMNn2iGQ,1662
|
|
221
|
+
monopyly/templates/credit/transaction_form/transaction_form_page.html,sha256=x_gwHkqWVuiVIm2Ol_Cv7ce2EODJS1Ktn5S2kI4gG1o,795
|
|
206
222
|
monopyly/templates/credit/transaction_form/transaction_form_page_new.html,sha256=zIKYO4NyuzxFQltbyJg2FnfOinMHessSdaMpuBTbNxI,312
|
|
207
|
-
monopyly/templates/credit/transaction_form/transaction_form_page_update.html,sha256=
|
|
223
|
+
monopyly/templates/credit/transaction_form/transaction_form_page_update.html,sha256=VDlNFZPvuwNOfD53iPkpoi4WOyZYRHeIVy_7gpTJuew,513
|
|
208
224
|
monopyly/templates/credit/transactions_table/condensed_row_content.html,sha256=TC2CNP30qwPYdn2Urv7B1hm1-oTSd9bpVWLRpEppJwM,639
|
|
209
|
-
monopyly/templates/credit/transactions_table/expanded_row_content.html,sha256=
|
|
225
|
+
monopyly/templates/credit/transactions_table/expanded_row_content.html,sha256=SwS-YVDQDv0rHK2g_vLs0RWePKKo5972UEOG1JwuSVI,2061
|
|
210
226
|
monopyly/templates/credit/transactions_table/transaction_field_titles.html,sha256=km-3YEDJaygwcKV-rwYnrE7xF8u4Z7jCBsk0Ia-LO-M,758
|
|
211
227
|
monopyly/templates/credit/transactions_table/transactions.html,sha256=tcppv0qNV-Qq6U5jfxoNyGKPXmyV9h9nR6rw4jXfBsY,481
|
|
212
|
-
monopyly-1.
|
|
213
|
-
monopyly-1.
|
|
214
|
-
monopyly-1.
|
|
215
|
-
monopyly-1.
|
|
216
|
-
monopyly-1.
|
|
217
|
-
monopyly-1.
|
|
228
|
+
monopyly-1.5.0.dist-info/METADATA,sha256=8DXxPJ5UuS1duTBFPb0qJiRcEYRpx4AOG9ETPEglz8U,10980
|
|
229
|
+
monopyly-1.5.0.dist-info/WHEEL,sha256=Fd6mP6ydyRguakwUJ05oBE7fh2IPxgtDN9IwHJ9OqJQ,87
|
|
230
|
+
monopyly-1.5.0.dist-info/entry_points.txt,sha256=_GmCja7NEqYHlGlVbz4rThqk0SIOmFUkiE8mN1dwgdY,58
|
|
231
|
+
monopyly-1.5.0.dist-info/licenses/COPYING,sha256=5X8cMguM-HmKfS_4Om-eBqM6A1hfbgZf6pfx2G24QFI,35150
|
|
232
|
+
monopyly-1.5.0.dist-info/licenses/LICENSE,sha256=94rIicMccmTPhqXiRLV9JsU8P2ocMuEUUtUpp6LPKiE,253
|
|
233
|
+
monopyly-1.5.0.dist-info/RECORD,,
|