monopyly 1.4.8__py3-none-any.whl → 1.5.1__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 +18 -0
- monopyly/__init__.py +2 -2
- monopyly/_version.py +14 -2
- monopyly/auth/actions.py +12 -0
- monopyly/auth/routes.py +30 -21
- monopyly/auth/tools.py +1 -2
- monopyly/cli/apps.py +1 -1
- monopyly/cli/launch.py +3 -0
- monopyly/common/forms/_forms.py +56 -2
- monopyly/common/forms/utils.py +1 -2
- monopyly/common/transactions.py +162 -0
- monopyly/core/routes.py +0 -6
- monopyly/credit/actions.py +29 -0
- monopyly/credit/forms.py +25 -0
- monopyly/credit/routes.py +115 -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 +282 -0
- monopyly/credit/transactions/activity/reconciliation.py +456 -0
- monopyly/database/models.py +6 -0
- monopyly/static/css/style.css +1328 -270
- 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/auth/change_password.html +21 -0
- monopyly/templates/auth/login.html +3 -1
- monopyly/templates/auth/register.html +17 -7
- 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 +3 -3
- 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 +64 -63
- monopyly/templates/credit/transactions_table/expanded_row_content.html +18 -12
- monopyly/templates/layout.html +37 -29
- {monopyly-1.4.8.dist-info → monopyly-1.5.1.dist-info}/METADATA +8 -7
- {monopyly-1.4.8.dist-info → monopyly-1.5.1.dist-info}/RECORD +75 -58
- {monopyly-1.4.8.dist-info → monopyly-1.5.1.dist-info}/WHEEL +1 -1
- monopyly/static/img/icons/statement-pair.svg +0 -281
- monopyly/static/img/icons/statement.svg +0 -294
- {monopyly-1.4.8.dist-info → monopyly-1.5.1.dist-info}/entry_points.txt +0 -0
- {monopyly-1.4.8.dist-info → monopyly-1.5.1.dist-info}/licenses/COPYING +0 -0
- {monopyly-1.4.8.dist-info → monopyly-1.5.1.dist-info}/licenses/LICENSE +0 -0
monopyly/templates/layout.html
CHANGED
|
@@ -7,34 +7,36 @@
|
|
|
7
7
|
{% if request.path != '/' %} – {% endif %}
|
|
8
8
|
Monopyly
|
|
9
9
|
</title>
|
|
10
|
-
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}"
|
|
10
|
+
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}" />
|
|
11
|
+
<!-- Ensure emulators also display the page properly -->
|
|
12
|
+
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" />
|
|
11
13
|
<!-- ****** faviconit.com favicons ****** -->
|
|
12
|
-
<link rel="shortcut icon" href="{{ url_for('static', filename='favicon/favicon.ico') }}"
|
|
13
|
-
<link rel="icon" sizes="16x16 32x32 64x64" href="{{ url_for('static', filename='favicon/favicon.ico') }}"
|
|
14
|
-
<link rel="icon" type="image/png" sizes="196x196" href="{{ url_for('static', filename='favicon/favicon-192.png') }}"
|
|
15
|
-
<link rel="icon" type="image/png" sizes="160x160" href="{{ url_for('static', filename='favicon/favicon-160.png') }}"
|
|
16
|
-
<link rel="icon" type="image/png" sizes="96x96" href="{{ url_for('static', filename='favicon/favicon-96.png') }}"
|
|
17
|
-
<link rel="icon" type="image/png" sizes="64x64" href="{{ url_for('static', filename='favicon/favicon-64.png') }}"
|
|
18
|
-
<link rel="icon" type="image/png" sizes="32x32" href="{{ url_for('static', filename='favicon/favicon-32.png') }}"
|
|
19
|
-
<link rel="icon" type="image/png" sizes="16x16" href="{{ url_for('static', filename='favicon/favicon-16.png') }}"
|
|
20
|
-
<link rel="apple-touch-icon" href="{{ url_for('static', filename='favicon/favicon-57.png') }}"
|
|
21
|
-
<link rel="apple-touch-icon" sizes="114x114" href="{{ url_for('static', filename='favicon/favicon-114.png') }}"
|
|
22
|
-
<link rel="apple-touch-icon" sizes="72x72" href="{{ url_for('static', filename='favicon/favicon-72.png') }}"
|
|
23
|
-
<link rel="apple-touch-icon" sizes="144x144" href="{{ url_for('static', filename='favicon/favicon-144.png') }}"
|
|
24
|
-
<link rel="apple-touch-icon" sizes="60x60" href="{{ url_for('static', filename='favicon/favicon-60.png') }}"
|
|
25
|
-
<link rel="apple-touch-icon" sizes="120x120" href="{{ url_for('static', filename='favicon/favicon-120.png') }}"
|
|
26
|
-
<link rel="apple-touch-icon" sizes="76x76" href="{{ url_for('static', filename='favicon/favicon-76.png') }}"
|
|
27
|
-
<link rel="apple-touch-icon" sizes="152x152" href="{{ url_for('static', filename='favicon/favicon-152.png') }}"
|
|
28
|
-
<link rel="apple-touch-icon" sizes="180x180" href="{{ url_for('static', filename='favicon/favicon-180.png') }}"
|
|
29
|
-
<meta name="msapplication-TileColor" content="#FFFFFF"
|
|
30
|
-
<meta name="msapplication-TileImage" content="{{ url_for('static', filename='favicon/favicon-144.png') }}"
|
|
31
|
-
<meta name="msapplication-config" content="{{ url_for('static', filename='favicon/browserconfig.xml') }}"
|
|
14
|
+
<link rel="shortcut icon" href="{{ url_for('static', filename='favicon/favicon.ico') }}" />
|
|
15
|
+
<link rel="icon" sizes="16x16 32x32 64x64" href="{{ url_for('static', filename='favicon/favicon.ico') }}" />
|
|
16
|
+
<link rel="icon" type="image/png" sizes="196x196" href="{{ url_for('static', filename='favicon/favicon-192.png') }}" />
|
|
17
|
+
<link rel="icon" type="image/png" sizes="160x160" href="{{ url_for('static', filename='favicon/favicon-160.png') }}" />
|
|
18
|
+
<link rel="icon" type="image/png" sizes="96x96" href="{{ url_for('static', filename='favicon/favicon-96.png') }}" />
|
|
19
|
+
<link rel="icon" type="image/png" sizes="64x64" href="{{ url_for('static', filename='favicon/favicon-64.png') }}" />
|
|
20
|
+
<link rel="icon" type="image/png" sizes="32x32" href="{{ url_for('static', filename='favicon/favicon-32.png') }}" />
|
|
21
|
+
<link rel="icon" type="image/png" sizes="16x16" href="{{ url_for('static', filename='favicon/favicon-16.png') }}" />
|
|
22
|
+
<link rel="apple-touch-icon" href="{{ url_for('static', filename='favicon/favicon-57.png') }}" />
|
|
23
|
+
<link rel="apple-touch-icon" sizes="114x114" href="{{ url_for('static', filename='favicon/favicon-114.png') }}" />
|
|
24
|
+
<link rel="apple-touch-icon" sizes="72x72" href="{{ url_for('static', filename='favicon/favicon-72.png') }}" />
|
|
25
|
+
<link rel="apple-touch-icon" sizes="144x144" href="{{ url_for('static', filename='favicon/favicon-144.png') }}" />
|
|
26
|
+
<link rel="apple-touch-icon" sizes="60x60" href="{{ url_for('static', filename='favicon/favicon-60.png') }}" />
|
|
27
|
+
<link rel="apple-touch-icon" sizes="120x120" href="{{ url_for('static', filename='favicon/favicon-120.png') }}" />
|
|
28
|
+
<link rel="apple-touch-icon" sizes="76x76" href="{{ url_for('static', filename='favicon/favicon-76.png') }}" />
|
|
29
|
+
<link rel="apple-touch-icon" sizes="152x152" href="{{ url_for('static', filename='favicon/favicon-152.png') }}" />
|
|
30
|
+
<link rel="apple-touch-icon" sizes="180x180" href="{{ url_for('static', filename='favicon/favicon-180.png') }}" />
|
|
31
|
+
<meta name="msapplication-TileColor" content="#FFFFFF" />
|
|
32
|
+
<meta name="msapplication-TileImage" content="{{ url_for('static', filename='favicon/favicon-144.png') }}" />
|
|
33
|
+
<meta name="msapplication-config" content="{{ url_for('static', filename='favicon/browserconfig.xml') }}" />
|
|
32
34
|
<!-- ****** faviconit.com favicons ****** -->
|
|
33
35
|
<!-- Use Google JQuery CDN -->
|
|
34
36
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script>
|
|
35
37
|
<script>window.jQuery || document.write('<script src="{{ url_for('static', filename='jquery-3.7.0.min.js') }}"><\/script>')</script>
|
|
36
38
|
<!-- Use Chartist via CDN -->
|
|
37
|
-
<link rel="stylesheet" href="//cdn.jsdelivr.net/chartist.js/latest/chartist.min.css"
|
|
39
|
+
<link rel="stylesheet" href="//cdn.jsdelivr.net/chartist.js/latest/chartist.min.css" />
|
|
38
40
|
<script src="//cdn.jsdelivr.net/chartist.js/latest/chartist.min.js"></script>
|
|
39
41
|
</head>
|
|
40
42
|
<body>
|
|
@@ -51,9 +53,13 @@
|
|
|
51
53
|
</h1>
|
|
52
54
|
</a>
|
|
53
55
|
|
|
54
|
-
<nav id="
|
|
55
|
-
<
|
|
56
|
-
|
|
56
|
+
<nav id="header-menu">
|
|
57
|
+
<svg class="mobile-menu mobile-menu-rotate toggle-button" viewBox="0 0 100 100">
|
|
58
|
+
<path class="line top" d="m 30,33 h 40 c 3.722839,0 7.5,3.126468 7.5,8.578427 0,5.451959 -2.727029,8.421573 -7.5,8.421573 h -20" />
|
|
59
|
+
<path class="line middle" d="m 30,50 h 40" />
|
|
60
|
+
<path class="line bottom" d="m 70,67 h -40 c 0,0 -7.5,-0.802118 -7.5,-8.365747 0,-7.563629 7.5,-8.634253 7.5,-8.634253 h 20" />
|
|
61
|
+
</svg>
|
|
62
|
+
<ul class="menu-links"></strong>
|
|
57
63
|
<li><a href="{{ url_for('core.index') }}">Home</a></li>
|
|
58
64
|
<li><a href="{{ url_for('core.about') }}">About</a></li>
|
|
59
65
|
{% if g.user %}
|
|
@@ -67,7 +73,6 @@
|
|
|
67
73
|
<li><a href="{{ url_for('auth.register') }}">Register</a></li>
|
|
68
74
|
<li><a href="{{ url_for('auth.login') }}">Log In</a></li>
|
|
69
75
|
{% endif %}
|
|
70
|
-
|
|
71
76
|
</ul></strong>
|
|
72
77
|
</nav>
|
|
73
78
|
|
|
@@ -86,8 +91,8 @@
|
|
|
86
91
|
{% block header %}{% endblock %}
|
|
87
92
|
</header>
|
|
88
93
|
|
|
89
|
-
{% for message in get_flashed_messages() %}
|
|
90
|
-
<div class="flash">{{ message }}</div>
|
|
94
|
+
{% for category, message in get_flashed_messages(with_categories=True) %}
|
|
95
|
+
<div class="flash {{ category }}">{{ message }}</div>
|
|
91
96
|
{% endfor %}
|
|
92
97
|
|
|
93
98
|
{% block content %}{% endblock %}
|
|
@@ -107,7 +112,10 @@
|
|
|
107
112
|
</p>
|
|
108
113
|
</footer>
|
|
109
114
|
|
|
110
|
-
|
|
115
|
+
<script type="module" src="{{ url_for('static', filename='js/toggle-navigation.js') }}">
|
|
116
|
+
</script>
|
|
117
|
+
{% block javascript %}
|
|
118
|
+
{% endblock %}
|
|
111
119
|
|
|
112
120
|
</body>
|
|
113
121
|
</html>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: monopyly
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.5.1
|
|
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
|
|
@@ -23,15 +23,16 @@ Classifier: Topic :: Office/Business :: Financial
|
|
|
23
23
|
Classifier: Topic :: Office/Business :: Financial :: Accounting
|
|
24
24
|
Classifier: Topic :: Office/Business :: Financial :: Spreadsheet
|
|
25
25
|
Requires-Python: <3.11,>=3.10
|
|
26
|
-
Requires-Dist: authanor==1.1.
|
|
26
|
+
Requires-Dist: authanor==1.1.1
|
|
27
27
|
Requires-Dist: flask-wtf==1.2.1
|
|
28
28
|
Requires-Dist: flask==3.0.3
|
|
29
29
|
Requires-Dist: fuisce==1.0.2
|
|
30
|
-
Requires-Dist: gunicorn==
|
|
31
|
-
Requires-Dist: markdown==3.
|
|
30
|
+
Requires-Dist: gunicorn==23.0.0
|
|
31
|
+
Requires-Dist: markdown==3.7
|
|
32
|
+
Requires-Dist: nltk==3.9.1
|
|
32
33
|
Requires-Dist: python-dateutil==2.9.0
|
|
33
|
-
Requires-Dist: rich==13.
|
|
34
|
-
Requires-Dist: sqlalchemy==2.0.
|
|
34
|
+
Requires-Dist: rich==13.8.1
|
|
35
|
+
Requires-Dist: sqlalchemy==2.0.35
|
|
35
36
|
Description-Content-Type: text/markdown
|
|
36
37
|
|
|
37
38
|
<div id="header">
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
monopyly/CHANGELOG.md,sha256=
|
|
1
|
+
monopyly/CHANGELOG.md,sha256=gRCnpb-vMJfzcTbFQ0dXXHsAdMy6O2ZpM52JZpkBiYM,8167
|
|
2
2
|
monopyly/README.md,sha256=cm1wli7E-xybYoJr-tsrNgfIO6TPrLsraMUSO26D6xk,9028
|
|
3
|
-
monopyly/__init__.py,sha256=
|
|
4
|
-
monopyly/_version.py,sha256=
|
|
5
|
-
monopyly/auth/actions.py,sha256=
|
|
3
|
+
monopyly/__init__.py,sha256=2UPhNvpvhuafUZwgSGJEIaOj9LIXzrRO-S8dfB4-FeQ,2203
|
|
4
|
+
monopyly/_version.py,sha256=W6YuN1JOd6M-rSt9HDXK91AutRDYXTjJT_LQg3rCsjk,411
|
|
5
|
+
monopyly/auth/actions.py,sha256=uwXg0LVz3QVJxKkiI-YCJMT8OSjUK7R-aEy-XTM0Ghs,702
|
|
6
6
|
monopyly/auth/blueprint.py,sha256=sFbmTvSBhjv1pn2gJLH5J6zanPLuemmWbgEj5ZKCiTY,244
|
|
7
|
-
monopyly/auth/routes.py,sha256=
|
|
8
|
-
monopyly/auth/tools.py,sha256=
|
|
7
|
+
monopyly/auth/routes.py,sha256=bGuKDnyo0t918Gx_OeCbN51pJFhUsPyZ-TSPUCFuMnY,3375
|
|
8
|
+
monopyly/auth/tools.py,sha256=CDMcvRY0A-cJxvKUKOUkDzZHDxveHl-8TzhKyOzsXEs,792
|
|
9
9
|
monopyly/banking/accounts.py,sha256=yYlXvyhLBQoBZYr_WMk6_3nxlhwU4NEkCYKv5hHFjcM,9828
|
|
10
10
|
monopyly/banking/actions.py,sha256=NvButozWJNRuNIiyM-Gy88XLTpIjNcEGSQcLMfEwOUg,3258
|
|
11
11
|
monopyly/banking/banks.py,sha256=X1seKJrec-o8z-bM0wVTR42vMx1q5A9Lf2jNUtINlrQ,1745
|
|
@@ -14,14 +14,14 @@ monopyly/banking/filters.py,sha256=wCsAUh592B5BmGFC9NqmrJZ0NdQZi21hvy0QsKqhgLg,6
|
|
|
14
14
|
monopyly/banking/forms.py,sha256=p-YGZgdKugk3VKILLiQNEH5KQmXop5G8P1Bs4sUqbK0,10506
|
|
15
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/launch.py,sha256=
|
|
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
|
-
monopyly/common/forms/utils.py,sha256=
|
|
24
|
+
monopyly/common/forms/utils.py,sha256=QbA6253xL4J01DQNQXL-BM13MgAr_HAM93H8a9Nwh6k,5660
|
|
25
25
|
monopyly/common/forms/validators.py,sha256=C5_NN8ktvBw6MrSXwv_x9_SQohCNmnp4brNQFELHBlI,1205
|
|
26
26
|
monopyly/config/__init__.py,sha256=pW2lHNhsdM2gRjLAWumnLUHZMAOEdprX4aXaONwo6AY,73
|
|
27
27
|
monopyly/config/default_settings.py,sha256=jtWz4ElasnAbfBCiRfbsYyy--L6N6jTOGRh3PNWnVj4,1829
|
|
@@ -32,23 +32,27 @@ monopyly/core/context_processors.py,sha256=ByQGQpOJIpxG3WM3Kv34LbBY0H8HVeR81TDYk
|
|
|
32
32
|
monopyly/core/errors.py,sha256=xF4gA3Hv99op3EMV_f2CskHWVLrV-9ckaHKJMWR2h7o,200
|
|
33
33
|
monopyly/core/filters.py,sha256=uBkNjQyqW-9RkiQG23vngnI1MZXFeh4Rhe5MQqklAEQ,1284
|
|
34
34
|
monopyly/core/internal_transactions.py,sha256=PImeViMU9rdDDPLXld1xC6bdAoulzRDr0zci4pUQY8I,459
|
|
35
|
-
monopyly/core/routes.py,sha256=
|
|
35
|
+
monopyly/core/routes.py,sha256=FhXL8JrqsumxdUiGsmzSG7fim4Kz5rDxr0Az-3SmI90,2639
|
|
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=aGARysyBNY04hF43IgbwZfBB6ByG51oqbOivmBXOxsk,13614
|
|
41
|
+
monopyly/credit/routes.py,sha256=weq0cdSB9eehdj1huTHBOjjCEtr3sel_82GX1BTe6EM,21977
|
|
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=yBEP3jG36iixhA0KN8TXdvE55Jp54L6TMR8xlOjqJMY,11624
|
|
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=_XOOIINtBFXZXFZZD1SKcTZkvsHegkBDdlX9zNew7ZQ,73560
|
|
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,59 @@ 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=
|
|
142
|
-
monopyly/templates/auth/
|
|
143
|
-
monopyly/templates/auth/
|
|
144
|
-
monopyly/templates/
|
|
145
|
-
monopyly/templates/banking/
|
|
152
|
+
monopyly/templates/layout.html,sha256=a1JQCOvlOHP1zNd64EmXrUaGQuhmrajeQCBPEVZgopE,5779
|
|
153
|
+
monopyly/templates/auth/change_password.html,sha256=yf8Zg2QYmBd9U-MHQXoI8d6pwrnWokDRjbVMxMIJTdU,652
|
|
154
|
+
monopyly/templates/auth/login.html,sha256=Cr16HB8FkYb7jT4ueCsEoOtSM84Lh4e9Jombsb6UPr8,457
|
|
155
|
+
monopyly/templates/auth/register.html,sha256=rZh1IUhCN_67vcSHPHm4LS1rJTo8kcaNc2EEnCTrmoQ,774
|
|
156
|
+
monopyly/templates/banking/account_page.html,sha256=Y2lZrzXFdykDkkPK9-FktGPq6i-94hV_Me1BM-MzxXU,2002
|
|
157
|
+
monopyly/templates/banking/account_summaries.html,sha256=GCMIFF6bYOwzPyw8gxKo8mAJ7QzmvyB2d8moEgzqki4,1139
|
|
146
158
|
monopyly/templates/banking/account_summaries_page.html,sha256=puBlB52WMZR_Dhz6_rSLomNa9QSChsItsshrKT5Aixs,1113
|
|
147
159
|
monopyly/templates/banking/account_summary.html,sha256=pE5DyrLP2MYewsECpP0iVusTlIunWe4tiLjSwGMV9uA,939
|
|
148
|
-
monopyly/templates/banking/accounts_page.html,sha256=
|
|
160
|
+
monopyly/templates/banking/accounts_page.html,sha256=4upvqJGWunJw3W8v_S8d7U003jff9mJ2tI7GStL-8Ms,2152
|
|
149
161
|
monopyly/templates/banking/account_form/account_form.html,sha256=v8AH6DTBW-4XVffcmr-sRRBl1k0e-30Q7Vy5sXHkrPM,1226
|
|
150
162
|
monopyly/templates/banking/account_form/account_form_page_new.html,sha256=aCahQlbJfIM_vzvHJb81dG_ORpXFmOw5QzYFNep7LxY,533
|
|
151
163
|
monopyly/templates/banking/transaction_form/bank_info_form.html,sha256=RkEjEgbD5zw4QlvpJ6koA8TxE0ZRTGmfmCy8SC2RVd0,670
|
|
@@ -155,23 +167,23 @@ monopyly/templates/banking/transaction_form/transaction_form_page_new.html,sha25
|
|
|
155
167
|
monopyly/templates/banking/transaction_form/transaction_form_page_update.html,sha256=4PljOpO7wTNNEq-mhFzA-uHvUxzerfRMbDddWvSMzlo,350
|
|
156
168
|
monopyly/templates/banking/transaction_form/transfer_form.html,sha256=ar3ttK7kgEWQpvnD23-ud8OcLPgtvGDrKRIp4UWGoQw,168
|
|
157
169
|
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=
|
|
170
|
+
monopyly/templates/banking/transactions_table/expanded_row_content.html,sha256=WaGZ6doBs0FmCe1Bqbxb2q613D8A-idTTzxy2xF4T5g,1405
|
|
159
171
|
monopyly/templates/banking/transactions_table/transaction_field_titles.html,sha256=WvjcRAByg1xSHqfNEkcJYB1eFnNfm4-qfHZben_YApI,600
|
|
160
172
|
monopyly/templates/banking/transactions_table/transactions.html,sha256=emId66z4LXyOF1xdiJIAwrGqE4WSY-iv03yZF4kye1k,486
|
|
161
173
|
monopyly/templates/common/form_page.html,sha256=Sx2Y6dhNsjkDQBaepTBPBvVeIe7N730llhgbcAQOrCk,107
|
|
162
174
|
monopyly/templates/common/transaction_form/subform.html,sha256=BjwJA0-ZOeBhrLdZAkddl5F5ElMN2MSykD2hZu8PNEA,370
|
|
163
|
-
monopyly/templates/common/transaction_form/subtransaction_subform.html,sha256=
|
|
175
|
+
monopyly/templates/common/transaction_form/subtransaction_subform.html,sha256=WBCGnkKNGC0x7KSJeKA1g8Xbm5sO9N3jY5Nt2WiWpUk,827
|
|
164
176
|
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=
|
|
177
|
+
monopyly/templates/common/transactions_table/linked_bank_transaction.html,sha256=ffqchNhXlxy-CytPFGZbathD4dOSF4Qb8MsTyCF4nqU,893
|
|
178
|
+
monopyly/templates/common/transactions_table/linked_credit_transaction.html,sha256=SpZS7CKO4IbVf2wbEi29TngIWNeVRIJZXt7ZDxCUI-M,795
|
|
167
179
|
monopyly/templates/common/transactions_table/linked_transaction_overlay.html,sha256=oqXGBdQaVvS9LPUKZrCqDMLO5F9aUtf-Npf-lR7ccIQ,1119
|
|
168
180
|
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=
|
|
181
|
+
monopyly/templates/common/transactions_table/transaction_condensed.html,sha256=V-HAol3kEMvIiAEmCU0jmdbDwOzzoQGV3thMGxEGtXw,364
|
|
182
|
+
monopyly/templates/common/transactions_table/transaction_expanded.html,sha256=mLUg9lSMEtoRwqHoheUObj-wrj9Xo2MvsBkkuZLVcHo,1261
|
|
183
|
+
monopyly/templates/common/transactions_table/transactions.html,sha256=a0kUH1tZB9Ilsvf1MpOtRJiHB9ddFJq7q_-zPtpO4Is,531
|
|
184
|
+
monopyly/templates/core/credits.html,sha256=5XO5foZ_J1RA42BEOzN20bZRcWm9xhZe125BCKudoUc,1166
|
|
185
|
+
monopyly/templates/core/index.html,sha256=02iQ1feV47EIG2nPGR4n2ANp8L1Jg1DEC52ievARnm8,4684
|
|
186
|
+
monopyly/templates/core/profile.html,sha256=uxHMs3hOta_ms3ZZ8JdariobFlvq4SU_cLNbhYsXJ78,2349
|
|
175
187
|
monopyly/templates/core/story.html,sha256=iEKfX1aHxXrstAeeQ6J8Gnvg1zGt95c-iLELUhG-AtE,3331
|
|
176
188
|
monopyly/templates/core/errors/400.html,sha256=whUYO3b6UIQWfN8y563umccU8GLxqXu0A5nb5uNM-XY,152
|
|
177
189
|
monopyly/templates/core/errors/401.html,sha256=3HH9TSDZfhyxZVcVnT0PNe524ADvEHIj6BsllQYFFOQ,154
|
|
@@ -187,31 +199,36 @@ monopyly/templates/credit/account_page.html,sha256=HxQzRfEejFXjmZwtZD-EdHipQ7zOe
|
|
|
187
199
|
monopyly/templates/credit/card_submission_page.html,sha256=7OU6PB01jACSKSzXGySWL8ccwfCT00SeX2KkdwW3K4Q,345
|
|
188
200
|
monopyly/templates/credit/cards.html,sha256=lvuKip2nHDmPi2Wj8zmO9ZXKXY22Dlv9fDrtHuYCSqA,598
|
|
189
201
|
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=
|
|
202
|
+
monopyly/templates/credit/statement_page.html,sha256=8diukPI-8ip6fDI4DRbRlEsfkKVp0OyGspfUXJpL1fg,3097
|
|
203
|
+
monopyly/templates/credit/statement_summary.html,sha256=4DkqlN1yKIhFYFUSxmbf997Jk7SmIa110qZZZhdNkOg,2857
|
|
204
|
+
monopyly/templates/credit/statements.html,sha256=ndCGe4xEj9aFfKPSrr1fnTyKKU-KxGRLq0iJTeJnDvc,1783
|
|
193
205
|
monopyly/templates/credit/statements_page.html,sha256=s_CSiRO8iTcCoEPVRF2TEOG2XNOeuGF1BSiJGhrH5O0,1458
|
|
194
206
|
monopyly/templates/credit/tags_page.html,sha256=mKm-QxuicO5MO12JOQy7tuc8Bd9fnnKiTSHDmMP5mTI,662
|
|
195
|
-
monopyly/templates/credit/transaction_submission_page.html,sha256=
|
|
207
|
+
monopyly/templates/credit/transaction_submission_page.html,sha256=FNqvt0WB59_80GhsUrPTEbPs_ydGF0G_fnE1T13_g_A,3136
|
|
196
208
|
monopyly/templates/credit/transactions_page.html,sha256=4Tx2yUGPUIRfz0M3vAQqjcfHAPvsVXdiD0k9N1O3B0Q,2391
|
|
197
209
|
monopyly/templates/credit/card_form/card_form.html,sha256=xF7x1RBQyAfKYuW_cRxwhKhug4tum-3s0YHyP0ovhFs,1666
|
|
198
210
|
monopyly/templates/credit/card_form/card_form_page_new.html,sha256=9ayX0dUEAbSSPVL3vIKIBJYkN8odL_KHOfq3fl6C8yw,525
|
|
199
211
|
monopyly/templates/credit/card_form/transfer_statement_inquiry.html,sha256=LuxietZsTLF3AMqeeHqcPoAYvJX_TsJ8MlDldpZwpoQ,1228
|
|
200
212
|
monopyly/templates/credit/card_graphic/card_back.html,sha256=gfr3975mziF0PCd_f2Jy83Y4ktFeFnZ1icVVpiVwoQA,889
|
|
201
213
|
monopyly/templates/credit/card_graphic/card_front.html,sha256=I53u0WvrQj-m2D-fkcga0GRketfpMuMXNM6Rs0e5CNA,679
|
|
214
|
+
monopyly/templates/credit/statement_reconciliation/discrepant_records.html,sha256=IMnLShpED8CcXYA3jrQoz4Fc2v0s6i1Fl1OAUY9pjGw,837
|
|
215
|
+
monopyly/templates/credit/statement_reconciliation/statement_reconciliation_inquiry.html,sha256=a1fpLfQWSDjmwx_1k71lpH-QN8xAnZsW0VNc7ODrizs,895
|
|
216
|
+
monopyly/templates/credit/statement_reconciliation/statement_reconciliation_page.html,sha256=B1mWqXvLIc9tPod-24HsVWVCsIKp6vBp71a5Mo322gA,2779
|
|
217
|
+
monopyly/templates/credit/statement_reconciliation/summary.html,sha256=yDNREcWbCbvmVRSbMVst2YnyLoLrd-5sgG2bWzsNAF4,1804
|
|
218
|
+
monopyly/templates/credit/statement_reconciliation/unrecorded_activities.html,sha256=wCgqgaih413A9RkyARGIQ9OMqaA2POkL57P-wkfG47k,836
|
|
202
219
|
monopyly/templates/credit/tag_tree/subtag_tree.html,sha256=wMt4BbLIxkioQiWmdIcEVD1xz21uuXtSB08VxJUPB2I,580
|
|
203
220
|
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=
|
|
221
|
+
monopyly/templates/credit/transaction_form/transaction_form.html,sha256=_2tYKMqmLE1Yqu9Pk94nOYuCxt3ZXGW8wDboMNn2iGQ,1662
|
|
222
|
+
monopyly/templates/credit/transaction_form/transaction_form_page.html,sha256=x_gwHkqWVuiVIm2Ol_Cv7ce2EODJS1Ktn5S2kI4gG1o,795
|
|
206
223
|
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=
|
|
224
|
+
monopyly/templates/credit/transaction_form/transaction_form_page_update.html,sha256=VDlNFZPvuwNOfD53iPkpoi4WOyZYRHeIVy_7gpTJuew,513
|
|
208
225
|
monopyly/templates/credit/transactions_table/condensed_row_content.html,sha256=TC2CNP30qwPYdn2Urv7B1hm1-oTSd9bpVWLRpEppJwM,639
|
|
209
|
-
monopyly/templates/credit/transactions_table/expanded_row_content.html,sha256=
|
|
226
|
+
monopyly/templates/credit/transactions_table/expanded_row_content.html,sha256=SwS-YVDQDv0rHK2g_vLs0RWePKKo5972UEOG1JwuSVI,2061
|
|
210
227
|
monopyly/templates/credit/transactions_table/transaction_field_titles.html,sha256=km-3YEDJaygwcKV-rwYnrE7xF8u4Z7jCBsk0Ia-LO-M,758
|
|
211
228
|
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.
|
|
229
|
+
monopyly-1.5.1.dist-info/METADATA,sha256=eeifCD3BKPYr57ZJG3czCwzKzWpryfk3Q8_1swYqZAc,10980
|
|
230
|
+
monopyly-1.5.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
231
|
+
monopyly-1.5.1.dist-info/entry_points.txt,sha256=_GmCja7NEqYHlGlVbz4rThqk0SIOmFUkiE8mN1dwgdY,58
|
|
232
|
+
monopyly-1.5.1.dist-info/licenses/COPYING,sha256=5X8cMguM-HmKfS_4Om-eBqM6A1hfbgZf6pfx2G24QFI,35150
|
|
233
|
+
monopyly-1.5.1.dist-info/licenses/LICENSE,sha256=94rIicMccmTPhqXiRLV9JsU8P2ocMuEUUtUpp6LPKiE,253
|
|
234
|
+
monopyly-1.5.1.dist-info/RECORD,,
|