aa-ledger 1.0.3__py3-none-any.whl → 2.0.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.
- {aa_ledger-1.0.3.dist-info → aa_ledger-2.0.0.dist-info}/METADATA +6 -6
- aa_ledger-2.0.0.dist-info/RECORD +267 -0
- {aa_ledger-1.0.3.dist-info → aa_ledger-2.0.0.dist-info}/WHEEL +1 -1
- ledger/__init__.py +2 -2
- ledger/admin.py +23 -18
- ledger/api/__init__.py +23 -7
- ledger/api/{ledger/admin.py → admin.py} +25 -31
- ledger/api/alliance.py +755 -0
- ledger/api/character.py +786 -0
- ledger/api/corporation.py +1141 -0
- ledger/api/{helpers.py → helpers/core.py} +33 -33
- ledger/api/helpers/icons.py +372 -0
- ledger/api/helpers/planetary_helper.py +354 -0
- ledger/api/planetary.py +354 -0
- ledger/api/schema.py +240 -15
- ledger/app_settings.py +18 -26
- ledger/auth_hooks.py +2 -2
- ledger/constants.py +50 -177
- ledger/decorators.py +2 -46
- ledger/forms.py +133 -39
- ledger/helpers/billboard.py +194 -144
- ledger/helpers/cache.py +105 -0
- ledger/helpers/discord.py +2 -4
- ledger/helpers/eveonline.py +160 -0
- ledger/helpers/ledger_data.py +23 -0
- ledger/helpers/ref_type.py +53 -78
- ledger/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- ledger/locale/cs_CZ/LC_MESSAGES/django.po +349 -193
- ledger/locale/de/LC_MESSAGES/django.mo +0 -0
- ledger/locale/de/LC_MESSAGES/django.po +528 -379
- ledger/locale/django.pot +717 -553
- ledger/locale/es/LC_MESSAGES/django.mo +0 -0
- ledger/locale/es/LC_MESSAGES/django.po +349 -194
- ledger/locale/fr_FR/LC_MESSAGES/django.mo +0 -0
- ledger/locale/fr_FR/LC_MESSAGES/django.po +349 -193
- ledger/locale/it_IT/LC_MESSAGES/django.mo +0 -0
- ledger/locale/it_IT/LC_MESSAGES/django.po +349 -193
- ledger/locale/ja/LC_MESSAGES/django.mo +0 -0
- ledger/locale/ja/LC_MESSAGES/django.po +348 -193
- ledger/locale/ko_KR/LC_MESSAGES/django.mo +0 -0
- ledger/locale/ko_KR/LC_MESSAGES/django.po +349 -193
- ledger/locale/nl_NL/LC_MESSAGES/django.mo +0 -0
- ledger/locale/nl_NL/LC_MESSAGES/django.po +349 -193
- ledger/locale/pl_PL/LC_MESSAGES/django.mo +0 -0
- ledger/locale/pl_PL/LC_MESSAGES/django.po +350 -193
- ledger/locale/ru/LC_MESSAGES/django.mo +0 -0
- ledger/locale/ru/LC_MESSAGES/django.po +348 -193
- ledger/locale/sk/LC_MESSAGES/django.mo +0 -0
- ledger/locale/sk/LC_MESSAGES/django.po +348 -193
- ledger/locale/uk/LC_MESSAGES/django.mo +0 -0
- ledger/locale/uk/LC_MESSAGES/django.po +348 -193
- ledger/locale/zh_Hans/LC_MESSAGES/django.mo +0 -0
- ledger/locale/zh_Hans/LC_MESSAGES/django.po +348 -193
- ledger/managers/character_audit_manager.py +28 -20
- ledger/managers/character_journal_manager.py +187 -358
- ledger/managers/character_mining_manager.py +64 -30
- ledger/managers/character_planetary_manager.py +185 -138
- ledger/managers/corporation_audit_manager.py +36 -27
- ledger/managers/corporation_journal_manager.py +94 -57
- ledger/managers/general_manager.py +12 -8
- ledger/migrations/0018_remove_characterplanet_ledger_char_planet__58a5b6_idx_and_more.py +44 -0
- ledger/migrations/0019_rename_characteraudit_characterowner_and_more.py +48 -0
- ledger/models/__init__.py +5 -11
- ledger/models/characteraudit.py +101 -109
- ledger/models/corporationaudit.py +94 -49
- ledger/models/general.py +105 -211
- ledger/models/helpers/update_manager.py +302 -0
- ledger/models/planetary.py +60 -205
- ledger/providers.py +101 -0
- ledger/static/ledger/css/{ledger.css → aa-ledger.css} +54 -28
- ledger/static/ledger/js/aa-ledger.js +124 -0
- ledger/static/ledger/js/charts.js +25 -1
- ledger/static/ledger/js/view-alliance-ledger.js +383 -0
- ledger/static/ledger/js/view-character-ledger.js +388 -0
- ledger/static/ledger/js/view-corporation-ledger.js +402 -0
- ledger/static/ledger/js/view-planetary.js +492 -0
- ledger/static/ledger/libs/amCharts/5.14.4/js/flow.js +2 -0
- ledger/static/ledger/libs/amCharts/5.14.4/js/index.js +2 -0
- ledger/static/ledger/libs/amCharts/5.14.4/js/percent.js +2 -0
- ledger/static/ledger/libs/amCharts/5.14.4/js/themes/Animated.js +2 -0
- ledger/static/ledger/libs/amCharts/5.14.4/js/themes/Dark.js +2 -0
- ledger/static/ledger/libs/amCharts/5.14.4/js/xy.js +2 -0
- ledger/static/ledger/libs/datatables/2.3.5/css/dataTables.bootstrap5.css +610 -0
- ledger/static/ledger/libs/datatables/2.3.5/js/dataTables.bootstrap5.js +122 -0
- ledger/static/ledger/libs/datatables/2.3.5/js/dataTables.js +14127 -0
- ledger/static/ledger/libs/datatables/Extensions/ColumnControl/1.1.1/css/columnControl.bootstrap5.css +516 -0
- ledger/static/ledger/libs/datatables/Extensions/ColumnControl/1.1.1/css/columnControl.dataTables.css +529 -0
- ledger/static/ledger/libs/datatables/Extensions/ColumnControl/1.1.1/js/columnControl.bootstrap5.js +73 -0
- ledger/static/ledger/libs/datatables/Extensions/ColumnControl/1.1.1/js/dataTables.columnControl.js +3090 -0
- ledger/static/ledger/libs/datatables/Extensions/FixedHeader/4.0.4/css/fixedHeader.bootstrap5.css +20 -0
- ledger/static/ledger/libs/datatables/Extensions/FixedHeader/4.0.4/js/dataTables.fixedHeader.js +1203 -0
- ledger/static/ledger/libs/datatables/Extensions/FixedHeader/4.0.4/js/fixedHeader.bootstrap5.js +59 -0
- ledger/tasks.py +157 -146
- ledger/templates/ledger/base.html +59 -21
- ledger/templates/ledger/bundles/aa-ledger-css.html +3 -0
- ledger/templates/ledger/bundles/aa-ledger-js.html +3 -0
- ledger/templates/ledger/bundles/view-alliance-ledger-js.html +14 -0
- ledger/templates/ledger/bundles/view-character-ledger-js.html +15 -0
- ledger/templates/ledger/bundles/view-character-planetary-css.html +3 -0
- ledger/templates/ledger/bundles/view-character-planetary-js.html +4 -0
- ledger/templates/ledger/bundles/view-corporation-ledger-js.html +15 -0
- ledger/templates/ledger/partials/modal/confirm.html +0 -1
- ledger/templates/ledger/partials/modal/request-accept-delete-alliance.html +38 -0
- ledger/templates/ledger/partials/modal/request-accept-delete-character.html +38 -0
- ledger/templates/ledger/partials/modal/request-accept-delete-corporation.html +38 -0
- ledger/templates/ledger/partials/modal/request-accept-switch-notification.html +38 -0
- ledger/templates/ledger/partials/modal/request-view-alliance-details.html +26 -0
- ledger/templates/ledger/partials/modal/request-view-character-details.html +26 -0
- ledger/templates/ledger/partials/modal/request-view-corporation-details.html +26 -0
- ledger/templates/ledger/partials/modal/request-view-extractor.html +32 -0
- ledger/templates/ledger/partials/modal/request-view-factory.html +31 -0
- ledger/templates/ledger/partials/{menu → navigation}/administration.html +8 -0
- ledger/templates/ledger/partials/{menu → navigation}/navigation.html +2 -2
- ledger/templates/ledger/partials/{administration → view-alliance-administration}/alliance_corporations.html +3 -3
- ledger/templates/ledger/partials/view-alliance-administration/dashboard.html +81 -0
- ledger/templates/ledger/partials/view-alliance-ledger/alliance-billboard.html +25 -0
- ledger/templates/ledger/partials/view-alliance-ledger/alliance-ledger-details.html +21 -0
- ledger/templates/ledger/partials/view-alliance-ledger/alliance-table.html +24 -0
- ledger/templates/ledger/partials/view-alliance-ledger/information/daily.html +18 -0
- ledger/templates/ledger/partials/view-alliance-ledger/information/hourly.html +18 -0
- ledger/templates/ledger/partials/view-alliance-ledger/information/summary.html +19 -0
- ledger/templates/ledger/partials/{administration → view-character-administration}/character.html +1 -9
- ledger/templates/ledger/partials/{administration → view-character-administration}/dashboard.html +0 -34
- ledger/templates/ledger/partials/view-character-ledger/character-billboard.html +25 -0
- ledger/templates/ledger/partials/view-character-ledger/character-ledger-details.html +21 -0
- ledger/templates/ledger/partials/view-character-ledger/character-table.html +25 -0
- ledger/templates/ledger/partials/view-character-ledger/information/daily.html +18 -0
- ledger/templates/ledger/partials/view-character-ledger/information/hourly.html +18 -0
- ledger/templates/ledger/partials/view-character-ledger/information/summary.html +19 -0
- ledger/templates/ledger/partials/view-character-planetary/extractor-table.html +24 -0
- ledger/templates/ledger/partials/view-character-planetary/factory-table.html +24 -0
- ledger/templates/ledger/partials/view-character-planetary/planetary-table.html +22 -0
- ledger/templates/ledger/partials/view-character-planetary/storage-table.html +23 -0
- ledger/templates/ledger/partials/{administration → view-corporation-administration}/corporation.html +5 -13
- ledger/templates/ledger/partials/{administration → view-corporation-administration}/corporation_characters.html +1 -1
- ledger/templates/ledger/partials/view-corporation-administration/dashboard.html +81 -0
- ledger/templates/ledger/partials/view-corporation-ledger/corporation-billboard.html +25 -0
- ledger/templates/ledger/partials/view-corporation-ledger/corporation-ledger-details.html +21 -0
- ledger/templates/ledger/partials/view-corporation-ledger/corporation-table.html +26 -0
- ledger/templates/ledger/partials/view-corporation-ledger/information/daily.html +18 -0
- ledger/templates/ledger/partials/view-corporation-ledger/information/hourly.html +18 -0
- ledger/templates/ledger/partials/view-corporation-ledger/information/summary.html +19 -0
- ledger/templates/ledger/view-administration.html +62 -0
- ledger/templates/ledger/view-alliance-administration.html +49 -0
- ledger/templates/ledger/view-alliance-ledger.html +72 -0
- ledger/templates/ledger/view-alliance-overview.html +131 -0
- ledger/templates/ledger/view-character-administration.html +42 -0
- ledger/templates/ledger/view-character-ledger.html +73 -0
- ledger/templates/ledger/view-character-overview.html +135 -0
- ledger/templates/ledger/view-character-planetary-overview.html +135 -0
- ledger/templates/ledger/view-character-planetary.html +73 -0
- ledger/templates/ledger/view-corporation-administration.html +42 -0
- ledger/templates/ledger/view-corporation-ledger.html +73 -0
- ledger/templates/ledger/view-corporation-overview.html +131 -0
- ledger/templatetags/ledger.py +3 -5
- ledger/tests/__init__.py +187 -0
- ledger/tests/test_admin.py +164 -68
- ledger/tests/test_auth_hook.py +31 -13
- ledger/tests/test_decarators.py +14 -79
- ledger/tests/test_discord_installed.py +0 -1
- ledger/tests/test_helpers/test_ledger_data.py +19 -0
- ledger/tests/test_managers/test_character_audit_manager.py +111 -69
- ledger/tests/test_managers/test_character_journal_manager.py +48 -208
- ledger/tests/test_managers/test_character_mining_manager.py +37 -16
- ledger/tests/test_managers/test_corporation_division_manager.py +66 -28
- ledger/tests/test_managers/test_corporation_journal_manager.py +39 -42
- ledger/tests/test_managers/test_general_manager.py +78 -18
- ledger/tests/test_managers/test_planetary_manager.py +73 -32
- ledger/tests/test_models/test_characteraudit.py +58 -74
- ledger/tests/test_models/test_characterminingledger.py +20 -26
- ledger/tests/test_models/test_characterwalletjournal.py +10 -33
- ledger/tests/test_models/test_corporationaudit.py +41 -35
- ledger/tests/test_models/test_corporationwalletjournal.py +35 -32
- ledger/tests/test_models/test_general.py +44 -11
- ledger/tests/test_models/test_planetary.py +14 -80
- ledger/tests/test_templatetags.py +2 -7
- ledger/tests/test_views/corporation/test_add_corp.py +16 -35
- ledger/tests/test_views/corporation/test_delete_corporation.py +66 -42
- ledger/tests/test_views/test_access.py +512 -545
- ledger/tests/test_views/test_add_ally.py +57 -46
- ledger/tests/test_views/test_add_char.py +21 -33
- ledger/tests/test_views/test_delete_character.py +24 -21
- ledger/tests/testdata/README_ESI_STUB.md +430 -0
- ledger/tests/testdata/esi_stub_openapi.py +511 -0
- ledger/tests/testdata/integrations/__init__.py +0 -0
- ledger/tests/testdata/{load_eveuniverse.py → integrations/eveuniverse.py} +0 -1
- ledger/tests/testdata/integrations/planetary.py +13 -0
- ledger/tests/testdata/json/factory.json +281 -0
- ledger/tests/testdata/json/inactive.json +281 -0
- ledger/tests/testdata/json/pins.json +175 -272
- ledger/tests/testdata/json/route.json +95 -528
- ledger/tests/testdata/test_esi_stub.py +468 -0
- ledger/tests/testdata/utils.py +601 -0
- ledger/thirdparty/charlink_hook.py +60 -30
- ledger/urls.py +0 -135
- ledger/views/alliance/add_ally.py +2 -4
- ledger/views/alliance/alliance_ledger.py +64 -147
- ledger/views/character/add_char.py +8 -10
- ledger/views/character/character_ledger.py +60 -126
- ledger/views/character/planetary.py +5 -98
- ledger/views/corporation/add_corp.py +10 -12
- ledger/views/corporation/corporation_ledger.py +65 -327
- ledger/views/index.py +92 -30
- aa_ledger-1.0.3.dist-info/RECORD +0 -236
- ledger/api/api_helper/planetary_helper.py +0 -107
- ledger/api/ledger/__init__.py +0 -7
- ledger/api/ledger/planetary.py +0 -231
- ledger/helpers/alliance.py +0 -317
- ledger/helpers/character.py +0 -251
- ledger/helpers/core.py +0 -665
- ledger/helpers/corporation.py +0 -427
- ledger/helpers/data_exporter.py +0 -452
- ledger/static/ledger/js/planetary-confirm.js +0 -66
- ledger/static/ledger/js/planetary.js +0 -143
- ledger/templates/ledger/admin.html +0 -43
- ledger/templates/ledger/allyledger/admin/alliance_administration.html +0 -46
- ledger/templates/ledger/allyledger/admin/alliance_overview.html +0 -108
- ledger/templates/ledger/allyledger/alliance_ledger.html +0 -86
- ledger/templates/ledger/bundles/character-ledger-bundles.html +0 -66
- ledger/templates/ledger/bundles/corporation-ledger-bundles.html +0 -75
- ledger/templates/ledger/bundles/ledger-bundles.html +0 -23
- ledger/templates/ledger/bundles/ledger-css.html +0 -3
- ledger/templates/ledger/bundles/planetary-bundles.html +0 -50
- ledger/templates/ledger/bundles/table-css.html +0 -3
- ledger/templates/ledger/charledger/admin/character_administration.html +0 -39
- ledger/templates/ledger/charledger/admin/character_overview.html +0 -106
- ledger/templates/ledger/charledger/character_ledger.html +0 -94
- ledger/templates/ledger/charledger/planetary/admin/planetary_overview.html +0 -123
- ledger/templates/ledger/charledger/planetary/planetary_ledger.html +0 -54
- ledger/templates/ledger/corpledger/admin/corporation_administration.html +0 -39
- ledger/templates/ledger/corpledger/admin/corporation_overview.html +0 -108
- ledger/templates/ledger/corpledger/corporation_ledger.html +0 -129
- ledger/templates/ledger/data-export.html +0 -78
- ledger/templates/ledger/error.html +0 -31
- ledger/templates/ledger/partials/form/error-message.html +0 -1
- ledger/templates/ledger/partials/information/daily.html +0 -56
- ledger/templates/ledger/partials/information/day.html +0 -48
- ledger/templates/ledger/partials/information/error.html +0 -8
- ledger/templates/ledger/partials/information/hourly.html +0 -53
- ledger/templates/ledger/partials/information/summary.html +0 -88
- ledger/templates/ledger/partials/information/view_character_content.html +0 -35
- ledger/templates/ledger/partials/modal/switchalarm_confirm.html +0 -39
- ledger/templates/ledger/partials/modal/view_extractor.html +0 -48
- ledger/templates/ledger/partials/modal/view_factory.html +0 -123
- ledger/templates/ledger/partials/table/char-ledger.html +0 -85
- ledger/templates/ledger/partials/table/corp-ledger.html +0 -66
- ledger/templates/ledger/partials/table/planetary.html +0 -18
- ledger/templates/ledger/partials/thirdparty/billboard.html +0 -22
- ledger/templates/ledger/partials/view/card.html +0 -160
- ledger/templates/ledger/permission.html +0 -2
- ledger/tests/test_helpers/test_billboard.py +0 -11
- ledger/tests/test_helpers/test_data_exporter.py +0 -207
- ledger/tests/test_tasks.py +0 -282
- ledger/tests/test_view_helpers/test_core.py +0 -47
- ledger/tests/test_views/corporation/test_corporation.py +0 -267
- ledger/tests/test_views/test_planetary.py +0 -137
- ledger/tests/testdata/esi_stub.py +0 -109
- ledger/tests/testdata/esi_stub_migration.py +0 -80
- ledger/tests/testdata/generate_characteraudit.py +0 -106
- ledger/tests/testdata/generate_corporationaudit.py +0 -74
- ledger/tests/testdata/generate_events.py +0 -31
- ledger/tests/testdata/generate_miningledger.py +0 -13
- ledger/tests/testdata/generate_planets.py +0 -48
- ledger/tests/testdata/generate_walletjournal.py +0 -42
- ledger/tests/testdata/json/czarno-pins.json +0 -240
- ledger/tests/testdata/json/czarno-routes.json +0 -165
- ledger/tests/testdata/json/pins2.json +0 -538
- {aa_ledger-1.0.3.dist-info → aa_ledger-2.0.0.dist-info}/licenses/LICENSE +0 -0
- /ledger/{tests/test_view_helpers → api/helpers}/__init__.py +0 -0
- /ledger/templates/ledger/bundles/{ally-administration-bundles.html → view-alliance-administration-js.html} +0 -0
- /ledger/templates/ledger/bundles/{char-administration-bundles.html → view-character-administration-js.html} +0 -0
- /ledger/templates/ledger/bundles/{corp-administration-bundles.html → view-corporation-administration-js.html} +0 -0
- /ledger/templates/ledger/partials/{administration → view-alliance-administration}/alliance.html +0 -0
- /ledger/tests/testdata/{esi.json → esi_test_data.json} +0 -0
- /ledger/tests/testdata/{allianceauth.json → integrations/allianceauth.json} +0 -0
- /ledger/tests/testdata/{load_allianceauth.py → integrations/allianceauth.py} +0 -0
- /ledger/tests/testdata/{eveentity.json → integrations/eveentity.json} +0 -0
- /ledger/tests/testdata/{load_eveentity.py → integrations/eveentity.py} +0 -0
- /ledger/tests/testdata/{eveuniverse.json → integrations/eveuniverse.json} +0 -0
- /ledger/tests/testdata/{planetary.json → integrations/planetary.json} +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: aa-ledger
|
|
3
|
-
Version:
|
|
3
|
+
Version: 2.0.0
|
|
4
4
|
Summary: Character and Corporation statistics, including detailed information on ESS, Ratting, Trading, Mining, and other activities.
|
|
5
5
|
Project-URL: Changelog, https://github.com/Geuthur/aa-ledger/blob/master/CHANGELOG.md
|
|
6
6
|
Project-URL: Documentation, https://github.com/Geuthur/aa-ledger/blob/master/README.md
|
|
@@ -700,11 +700,10 @@ Classifier: Programming Language :: Python :: 3.14
|
|
|
700
700
|
Classifier: Topic :: Internet :: WWW/HTTP
|
|
701
701
|
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
|
|
702
702
|
Requires-Python: >=3.10
|
|
703
|
-
Requires-Dist: allianceauth
|
|
704
|
-
Requires-Dist: allianceauth<5,>=4.10
|
|
703
|
+
Requires-Dist: allianceauth<5,>=4.12
|
|
705
704
|
Requires-Dist: django-esi<9,>=8
|
|
706
|
-
Requires-Dist: django-eveuniverse
|
|
707
|
-
Requires-Dist: django-ninja
|
|
705
|
+
Requires-Dist: django-eveuniverse<2,>=1.6
|
|
706
|
+
Requires-Dist: django-ninja<2,>=1.5
|
|
708
707
|
Provides-Extra: tests-allianceauth-latest
|
|
709
708
|
Requires-Dist: aa-discordnotify; extra == 'tests-allianceauth-latest'
|
|
710
709
|
Requires-Dist: allianceauth-discordbot; extra == 'tests-allianceauth-latest'
|
|
@@ -787,7 +786,7 @@ ______________________________________________________________________
|
|
|
787
786
|
## Installation<a name="installation"></a>
|
|
788
787
|
|
|
789
788
|
> [!NOTE]
|
|
790
|
-
> AA Ledger needs at least Alliance Auth v4.
|
|
789
|
+
> AA Ledger needs at least Alliance Auth v4.12.0
|
|
791
790
|
> Please make sure to update your Alliance Auth before you install this APP
|
|
792
791
|
|
|
793
792
|
### Step 0 - Check dependencies are installed<a name="step0"></a>
|
|
@@ -880,6 +879,7 @@ The Following Settings can be setting up in the `local.py`
|
|
|
880
879
|
- LEDGER_TASKS_TIME_LIMIT: `7200` - Defines the time (in seconds) a task will timeout
|
|
881
880
|
- LEDGER_USE_COMPRESSED: `True` - Defines if Mining Ledger use Compressed Price or Raw
|
|
882
881
|
- LEDGER_PRICE_PERCENTAGE: `0.9`- Defines Mining Price multiplier
|
|
882
|
+
- LEDGER_BULK_BATCH_SIZE: `500` - Maximum database batch size per operation. Reduce (e.g., 250) if encountering 'max_allowed_packet' errors, increase for better performance if MySQL is configured with higher limits
|
|
883
883
|
|
|
884
884
|
Advanced Settings: Stale Status for Each Section
|
|
885
885
|
|
|
@@ -0,0 +1,267 @@
|
|
|
1
|
+
ledger/__init__.py,sha256=KlZL5jHjvkJ8rASb5ifkW4dbk1r1dZzzt4zIyX7DOD0,738
|
|
2
|
+
ledger/admin.py,sha256=Ewxle2B5JL2dMEC4PspaKvz0jLEYWrIAhlbLlSuyUPI,9483
|
|
3
|
+
ledger/app_settings.py,sha256=RBHmydUBp_Ue8RTAExq_qzgQo2ZqqG4BxIZgdB7r9Ho,1414
|
|
4
|
+
ledger/apps.py,sha256=XQxXGP-1xvmQqTRJYrVIuUgCwUPOdEW3iSZaxTOYvT0,442
|
|
5
|
+
ledger/auth_hooks.py,sha256=9EMMJgwJES1HgkVNP_3Fidu2Sq-MHOg_4P_dzb76QWo,1454
|
|
6
|
+
ledger/checks.py,sha256=Sq-tfUyc_OElBi9Xj71DuJXBbRU0Zqu1XDSbEtp3bPI,1474
|
|
7
|
+
ledger/constants.py,sha256=54Vb8xlU6ROWxaEVvo-Tn_hgJi-Ki_s66Xz_HU3DM20,1867
|
|
8
|
+
ledger/decorators.py,sha256=IRcrVQsjWdyjcBTOeC9G9vHzDJPgQJPlsPNCZCRpCGE,850
|
|
9
|
+
ledger/errors.py,sha256=IDXm1RCGnV2fRFHviTz2XkeMvgQiaWpaghtr0040ayc,225
|
|
10
|
+
ledger/forms.py,sha256=mszqF_7CEqlXf3d2q0de8OD7687gW2QIO_l1sMsKuUw,6370
|
|
11
|
+
ledger/hooks.py,sha256=ofua_eHg_ikCxaql8O7c3itSx2FyUhpeXJNH39asncA,15
|
|
12
|
+
ledger/providers.py,sha256=3ejAkl90tG4ZfJsB52e5TfY-j8QiiYJO4BUR0pLqe_U,3542
|
|
13
|
+
ledger/tasks.py,sha256=Q3T_YX4CNEVnfsb3kgk1OhuZDs2XbOZnlZAQEpU9apk,16478
|
|
14
|
+
ledger/urls.py,sha256=U4Oj-qm1raYTiy4QPCK1zA2Lsqi_VZUNCBG1_DxLHoM,6022
|
|
15
|
+
ledger/api/__init__.py,sha256=UhZMRIaLcGlJpc9PgbjyPvICZAD48mXjKewWC5Q2_W8,1137
|
|
16
|
+
ledger/api/admin.py,sha256=EBOFiSj05QXS9OXU53tNAdYS5sDbly5xpFH7OsbhxFE,10223
|
|
17
|
+
ledger/api/alliance.py,sha256=Ci-if777yJKjN-ftag91JmM7LUeCR-a2m7sELmiSPEc,27848
|
|
18
|
+
ledger/api/character.py,sha256=4mOG_qtDz4hzvrLFzFXmXpJw-z2Rky4Rbtu1mfYqScc,29758
|
|
19
|
+
ledger/api/corporation.py,sha256=UlcApMbPxZN2eJ_BuFObciWfS5E5Pu9LFqjLj3fp0HE,42390
|
|
20
|
+
ledger/api/planetary.py,sha256=fvKjrhLr-kzJs6sVgBTtDT5OXnGZZjUI16ctGCSoS1o,14049
|
|
21
|
+
ledger/api/schema.py,sha256=owc3Zfaz6-eosHAtyo1B_OHhLpjBfgWrLwI_GwlLzMs,6494
|
|
22
|
+
ledger/api/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
|
+
ledger/api/helpers/core.py,sha256=x9_R0mSJkA8lTKGQLtkT5Lrxvc2LFyKLupYyZAjbHoI,4183
|
|
24
|
+
ledger/api/helpers/icons.py,sha256=jnPYYfWcKO2Zhf9B2yvzXRI6-nNaq-uTkgp1k3ZmxNc,12198
|
|
25
|
+
ledger/api/helpers/planetary_helper.py,sha256=3z1wKPRCDTqu71Rr23fcSJq6zolxNF_19S2-PbwU01U,11425
|
|
26
|
+
ledger/docs/information.md,sha256=gs66TkiGNpbPsaftcLURwKmm9b2OxXFazD1AF8g4fwE,1485
|
|
27
|
+
ledger/docs/images/preview1.png,sha256=haynE8BA9RbwpucJPvpvx-_A3CF5gE4za4EoQHrRyCc,433487
|
|
28
|
+
ledger/docs/images/preview2.png,sha256=tF7PRxU6BT6RUmSHzCh2x0Wx8MUck_zpYYLeSK6-Hns,590040
|
|
29
|
+
ledger/docs/images/preview3.png,sha256=QHPGRFc7nkhrjPMdvHmPvF5dMnDqndOk7r7Dp-UNs1Q,60864
|
|
30
|
+
ledger/docs/images/preview4.png,sha256=h4nY8Ezx6Jef0uCd201tpoIxEn3B0X8zkgn68hYFWRg,822061
|
|
31
|
+
ledger/docs/images/preview5.png,sha256=ufKWWxZLPAu6XvQDmV0dc0pS61WglXFGfGMlUkLW5UA,131063
|
|
32
|
+
ledger/docs/images/preview6.png,sha256=JDePXNyMVIn64Lv879HUKI_KgbjWzjbxrQrMhqPHA7c,61867
|
|
33
|
+
ledger/helpers/__init__.py,sha256=yppp0m8TIYARQJLk_cpEjIQYZeFVIcA-V3NdUD6QeVQ,21
|
|
34
|
+
ledger/helpers/billboard.py,sha256=HIoszQihkqT4FGkKgMlO20XMl41jtEzXgzfdVxHUgXc,11263
|
|
35
|
+
ledger/helpers/cache.py,sha256=pbwcHKrTSpxX3lHYT72idp3EqBX3CbFfBqR1XccX3YU,3253
|
|
36
|
+
ledger/helpers/discord.py,sha256=irOacXmEeQsIQbnwkMsKp8k4bTUDGdHae5jnFqqdtuA,4387
|
|
37
|
+
ledger/helpers/eveonline.py,sha256=uY4L1uyDV6ghzRFFdueXmALo6jhPK2WILzRxHUxYE0s,4654
|
|
38
|
+
ledger/helpers/ledger_data.py,sha256=MlSUUpExg8Cato62wm4XnAYpAZ9t-ip1FtLOrCHRgns,818
|
|
39
|
+
ledger/helpers/ref_type.py,sha256=ScyB1B66ypE-sgxT-o8B1ySkROyuC9pYylhoQ46Yhtc,15857
|
|
40
|
+
ledger/locale/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
41
|
+
ledger/locale/django.pot,sha256=Zvur6i18sVZ1E3XWEE5akkLNskwDPTolkFDeI7hCBQ4,35852
|
|
42
|
+
ledger/locale/cs_CZ/LC_MESSAGES/django.mo,sha256=3YNeQisu8jcrz_GAS7JkKpUCV-F834P71LzoV6Znzag,506
|
|
43
|
+
ledger/locale/cs_CZ/LC_MESSAGES/django.po,sha256=1FWHLL6iUBAvaf5fAtx8jY4t810-7RSYTLGaFnvbuxc,10768
|
|
44
|
+
ledger/locale/de/LC_MESSAGES/django.mo,sha256=7SfCTw2MSRoWdmfasLkEbh9u-J5UkzTYwpuW1aT9M7g,16381
|
|
45
|
+
ledger/locale/de/LC_MESSAGES/django.po,sha256=lhUv2B7JfvmRtFsSIRMPvifCJBgNB0WK2aQtmCo9Nic,16490
|
|
46
|
+
ledger/locale/es/LC_MESSAGES/django.mo,sha256=5ROiN4U8eAY-ig-4GYKiKhEul6WrEvu6o9eIllmFJ7M,481
|
|
47
|
+
ledger/locale/es/LC_MESSAGES/django.po,sha256=ms2lcgKue116kG6p4R0kuBYYFqDMp4-jiLDl3E48vJ4,10738
|
|
48
|
+
ledger/locale/fr_FR/LC_MESSAGES/django.mo,sha256=OKULOeAKC27NuBJ13LrY0UQ_bYqVxQFFHNEc0MOeXps,478
|
|
49
|
+
ledger/locale/fr_FR/LC_MESSAGES/django.po,sha256=1NaTSat_I4daS0t3vtzUEQ7GUAxVdsuaioqRXXfzpLY,10739
|
|
50
|
+
ledger/locale/it_IT/LC_MESSAGES/django.mo,sha256=BuLI5Hpr6OBjuVIq0UrDIu-ZHokZzCTPhaFw3pfGVc4,481
|
|
51
|
+
ledger/locale/it_IT/LC_MESSAGES/django.po,sha256=te9WZysL9MGhR-PcrTSL0qFdKmNeF1c95GDb5XCZalo,10741
|
|
52
|
+
ledger/locale/ja/LC_MESSAGES/django.mo,sha256=D4okuWOsgK3aR9mMO54PdCLyPuoccbe294gbYFRHW9w,478
|
|
53
|
+
ledger/locale/ja/LC_MESSAGES/django.po,sha256=voK-Q7nYn0Q8CFn1M474T_Gvg_Xf3os2dsXWzIKOC-Y,10734
|
|
54
|
+
ledger/locale/ko_KR/LC_MESSAGES/django.mo,sha256=PzDKUvsiNz2_mz4pcbUUZNmxB5hh45EbtQL6viKQe1E,474
|
|
55
|
+
ledger/locale/ko_KR/LC_MESSAGES/django.po,sha256=QhiqBwwL8XxI0V8bTynq5wGspWhSjGpYE06B5KwP3Lw,10735
|
|
56
|
+
ledger/locale/nl_NL/LC_MESSAGES/django.mo,sha256=FIAfj_VyCJApeKeLg_lJU_rZSjHvUAzQQsykU1LdVMc,477
|
|
57
|
+
ledger/locale/nl_NL/LC_MESSAGES/django.po,sha256=YVyXkoZAxyEiKjDL4bUH5nYwcnTkVmSDL4m6kLpW5uk,10739
|
|
58
|
+
ledger/locale/pl_PL/LC_MESSAGES/django.mo,sha256=Ovtxxq1A4Cqs-njOvbuIImFEWl2wlJ64kZ7x-KzXJ-g,537
|
|
59
|
+
ledger/locale/pl_PL/LC_MESSAGES/django.po,sha256=PAk71ob_AjDmK82_WmI-9E_1tshXpmSWJI3t6jK4dx0,10801
|
|
60
|
+
ledger/locale/ru/LC_MESSAGES/django.mo,sha256=mRkYBCu0Uomcv8cTMuglHBq7VZyOJGhnBoDMBGRgZuQ,621
|
|
61
|
+
ledger/locale/ru/LC_MESSAGES/django.po,sha256=q3QhfE7-gYsODlQeyPYetX2YdJxxLLYL0G8lUtaypfE,10884
|
|
62
|
+
ledger/locale/sk/LC_MESSAGES/django.mo,sha256=wwk330WfxKSdNPUzaZjhQhnNdrb1dDI-dO8hCmW-mLg,556
|
|
63
|
+
ledger/locale/sk/LC_MESSAGES/django.po,sha256=2Z1WKZZnW50cvGr9THdroy1etWt26J6Xd4G_Fe_NlLw,10817
|
|
64
|
+
ledger/locale/uk/LC_MESSAGES/django.mo,sha256=8z48Eo44SLFgNFRKNQ4fXLyur1rdpWyiQl3bbYqPUIc,709
|
|
65
|
+
ledger/locale/uk/LC_MESSAGES/django.po,sha256=YxoO54rljxsGyHWLNOAyhLcexcAWhk-R8MKNeA3xVq0,10973
|
|
66
|
+
ledger/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=gMxPocEeuVnJ1HD22czaFHzhHoOUohwR3Ln_LcX5z_s,534
|
|
67
|
+
ledger/locale/zh_Hans/LC_MESSAGES/django.po,sha256=fqpBiL4AxOB6tPozgl87dL_wP4kZm4uTkweQv287Xq4,10767
|
|
68
|
+
ledger/managers/character_audit_manager.py,sha256=pYe4GrspEHvkKSFhS-IYoi9r5cUV2ITD3TC_LcF18Lc,7109
|
|
69
|
+
ledger/managers/character_journal_manager.py,sha256=N9HPoXy8qP5DzPioSf6Cy3SUy7Ed-hCEcLr9MOvFUmU,12250
|
|
70
|
+
ledger/managers/character_mining_manager.py,sha256=0bTZaeFkH22noYldg-KVPpA9r4IwvUJQShykybzTaXM,9816
|
|
71
|
+
ledger/managers/character_planetary_manager.py,sha256=W_kVWj8WUsG39J2D5mPzRL__QD2-uv25UJTCSSrfrX8,17120
|
|
72
|
+
ledger/managers/corporation_audit_manager.py,sha256=cFoeTa1LUcKLGPBoQwVdzLbzk94oEovyOcdhJo4hxBc,6867
|
|
73
|
+
ledger/managers/corporation_journal_manager.py,sha256=BlvQ_hOfCt_vCrout4uRCEm6eAI-4ipuWVZMONdusDg,15277
|
|
74
|
+
ledger/managers/general_manager.py,sha256=NFIDu3foJaSSsd_YqjpxjWMY0upGDgCSgW8BXsxxG48,2867
|
|
75
|
+
ledger/migrations/0001_initial.py,sha256=SH3FFq5-azFP3pgemTIIBeraygM-z-siu4oC3tEaqUc,18987
|
|
76
|
+
ledger/migrations/0002_delete_corpsteuer_alter_characteraudit_options_and_more.py,sha256=hOZi8yBmPigHW4pQ93z8hXrLnf6wCMoCD25WvSsbhR8,1454
|
|
77
|
+
ledger/migrations/0003_alter_characteraudit_options_and_more.py,sha256=-7tDN8KmU_8bXEF3UU_8E0bkWfEWtpdncVPd3nxQDKA,1037
|
|
78
|
+
ledger/migrations/0004_characteraudit_last_update_planetary_characterplanet_and_more.py,sha256=OLU0QOd0tiGAhzLFtGDaN9rINEA9e-yY54pEUgedOas,3928
|
|
79
|
+
ledger/migrations/0005_alter_corporationaudit_options_alter_general_options.py,sha256=LkouBARm_jW9rXafD-tgq6zRWo_4IZsefOwIBYkL9_c,1095
|
|
80
|
+
ledger/migrations/0006_characteraudit_character_name_and_more.py,sha256=EJva-Gq9a4706FjXoI4ChU_I_HT4zIJxrtz1s1qFSbI,857
|
|
81
|
+
ledger/migrations/0007_characterplanetdetails_facilitys.py,sha256=OQK5gqpbZlX1o1mDRPJmEmLyz4pEs_xbkOkRoITCG8c,454
|
|
82
|
+
ledger/migrations/0008_alter_characterminingledger_date.py,sha256=GvfooVZ-wcgMhYAfOEz2M8v1_sILoWf1smMir35X9B0,413
|
|
83
|
+
ledger/migrations/0009_remove_characteraudit_last_update_mining_and_more.py,sha256=4LIKgH8_rEtfx0q-VqKS_mWbzjTMUVZglIo-615NPwU,9030
|
|
84
|
+
ledger/migrations/0010_fetch_planets_and_update_planetdetails.py,sha256=AOWTzuOHd0k1nRi1DPaJ-XAwYNcC0DBl7_5m8s-eXec,1343
|
|
85
|
+
ledger/migrations/0011_create_update_status_existings.py,sha256=mnADBc3MrN4odc928ehq6m78weCdNijts0PEJzeXpzA,249
|
|
86
|
+
ledger/migrations/0012_alter_corporationwalletjournalentry_division.py,sha256=lewMPuFLZjbB44-a_qZZh8AP-61JEwJm2hwiZCGIvDI,641
|
|
87
|
+
ledger/migrations/0013_delete_events.py,sha256=BR2PfSF0dHOe3is4eKvhNlqCxjez83PXJARMK-o5Pqk,330
|
|
88
|
+
ledger/migrations/0014_alter_corporationaudit_options_alter_general_options_and_more.py,sha256=K7JMWeE4akYlkST7oQX_ssZeZ9ysRYKFVqBZ6a7mViM,1537
|
|
89
|
+
ledger/migrations/0015_rename_character_characteraudit_eve_character.py,sha256=oGYc79nssnwQ1f-bCoxY7sIuWELoEewBQSWjxH2l-vc,468
|
|
90
|
+
ledger/migrations/0016_characterminingledger_price_per_unit.py,sha256=THcwqd372z0hch68hYLsy0kzA0fae6Cz4PpVaXWyEuQ,519
|
|
91
|
+
ledger/migrations/0017_alter_eveentity_category_alter_eveentity_eve_id_and_more.py,sha256=Daxv0_ki29Vb3j0J2Bb1OZFyT8WImmZS019XnApQEXQ,1222
|
|
92
|
+
ledger/migrations/0018_remove_characterplanet_ledger_char_planet__58a5b6_idx_and_more.py,sha256=z-hRwiE23q9B_ovRE85DuuOf6rtLB02b0hcBRjoJm3w,1245
|
|
93
|
+
ledger/migrations/0019_rename_characteraudit_characterowner_and_more.py,sha256=MoFiaez2TI19zNYKGQxwxfHZA7vtYIEmgYPyjWd75EE,1386
|
|
94
|
+
ledger/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
95
|
+
ledger/models/__init__.py,sha256=V6bXpYfcDf5LdQ2Mxk_u3ToaLmK-eaM0nbOJeTj54Mw,125
|
|
96
|
+
ledger/models/characteraudit.py,sha256=_-JLVgP3EwGPxdlW7c58wizXYOyYmk6pMIDh9oX8XRw,10503
|
|
97
|
+
ledger/models/corporationaudit.py,sha256=oIb8JtGXC_Qbpz80t8vpHBYyBcc3k9-CEtEwBH_kZLM,8405
|
|
98
|
+
ledger/models/general.py,sha256=ESwGFaDhtDnbTerRlc1YCKcFMIVAShhHya_asCHnX7w,9780
|
|
99
|
+
ledger/models/planetary.py,sha256=OCkTzT_3o_o8mY_9aEP-YQIRA3p0oSHBgfTLigL-1Lg,5096
|
|
100
|
+
ledger/models/helpers/update_manager.py,sha256=8SRj2pPU6fJuRATx3JEqf5-lJlUul4aiOc9WkUizp6Q,10941
|
|
101
|
+
ledger/static/ledger/css/aa-ledger.css,sha256=qBvJqtsS5tF0az6n9txvw8JFuq8I1LcCsYaAxhnOJ0A,2407
|
|
102
|
+
ledger/static/ledger/css/cards.css,sha256=eOCl9XDNJLgnXE5a84SJveu2Q5T_ZjCHD9sqhbxOxyI,2996
|
|
103
|
+
ledger/static/ledger/css/planetary.css,sha256=frXKv4u--szpWYdJS5UtrL9VeNGNaySDGilWuvUx0pw,870
|
|
104
|
+
ledger/static/ledger/css/table.css,sha256=06gvS8i-xLTM5lvC-gD5y1PraUIJuBuM0pw5s7qwf6o,823
|
|
105
|
+
ledger/static/ledger/images/Spinner-1s-64px-dark.gif,sha256=OdxGxhSy4z8UaLMdiKmXPL8yLmRWeqgAbyTxhw5U3bI,43262
|
|
106
|
+
ledger/static/ledger/images/Spinner-1s-64px-light.gif,sha256=1DYm3EiQLwLqOoum31gQdK0A5reR1vFaWjEYGDLqUqY,43381
|
|
107
|
+
ledger/static/ledger/images/green.png,sha256=ZEPpW4mjSfG_QPTLThfgSXm-9rWPlhRqK0OW_RA0Rsw,566059
|
|
108
|
+
ledger/static/ledger/images/pi.png,sha256=sZK6FwyfUgt09Zqj1BVJcJ8Tp-WMP_IWe7JZlPIbinw,245423
|
|
109
|
+
ledger/static/ledger/images/portrait.jpg,sha256=dls4maAquZEQfUe8nFVqoxQ0Lrp2rwrRWBSMUCeyuKw,938
|
|
110
|
+
ledger/static/ledger/images/red.png,sha256=VYZ7bRRkgTCtDwh2_y7NusKZBCHTpetaeEuCPIt7x10,419918
|
|
111
|
+
ledger/static/ledger/js/aa-ledger.js,sha256=wD3s0WMLm2EKZV78vJnyTp9txzIYe5OXSJlOdDMv55A,5092
|
|
112
|
+
ledger/static/ledger/js/charts.js,sha256=SZiHxGC6am8eVZeQPviaYIlSi7oftyt3IUKDwgkYi4g,7412
|
|
113
|
+
ledger/static/ledger/js/view-alliance-ledger.js,sha256=_zF8jW03uW4Ab7tN8lPj5pRu43zicl4Cdl3XOQw6QPc,14504
|
|
114
|
+
ledger/static/ledger/js/view-character-ledger.js,sha256=avGiGZ6ji2nYtIRGEXgAxCpizoAQxL3lcS_K29Fy3C4,14688
|
|
115
|
+
ledger/static/ledger/js/view-corporation-ledger.js,sha256=mEzU6M6IgS79fcRKSIqd4ws77FsGvRzR1CrAxL2p3xE,15215
|
|
116
|
+
ledger/static/ledger/js/view-planetary.js,sha256=pB6LILIC4gc1ZvtQR5jmJqFsPI-agrlq6lvS8pjcSR0,19282
|
|
117
|
+
ledger/static/ledger/js/modal/delete-confirm.js,sha256=sMj9XNTZtBH2YVKJliex5ZdqG4JhWk11sdwRmyuSH5c,2131
|
|
118
|
+
ledger/static/ledger/js/modal/modal-system.js,sha256=O9o6jU9aGWsqDmNexy8kviDp_5qLlJM-ANnxZJqPHds,2207
|
|
119
|
+
ledger/static/ledger/libs/amCharts/5.14.4/js/flow.js,sha256=ZsbuD9zP1xPLnIEtIgKkWDZu3RR32pObOdFfGYT402w,50922
|
|
120
|
+
ledger/static/ledger/libs/amCharts/5.14.4/js/index.js,sha256=4ChOLFbJULyTF41v1QdC6MD4mWKwRctH953r55k68Tw,496167
|
|
121
|
+
ledger/static/ledger/libs/amCharts/5.14.4/js/percent.js,sha256=XAWEfW2G6pg9EkbSFT8ZEOq-ZePSEi49pc3dNxdcGsU,32782
|
|
122
|
+
ledger/static/ledger/libs/amCharts/5.14.4/js/xy.js,sha256=p38DnJ8F8uAdJpHL2XIAfxx69ojZLW2XSAt1VST4MnY,196003
|
|
123
|
+
ledger/static/ledger/libs/amCharts/5.14.4/js/themes/Animated.js,sha256=m7Qsiwgq-1lkPWCYmzy3MTfw7LMZi3Wt2wHc4ajp4eg,1080
|
|
124
|
+
ledger/static/ledger/libs/amCharts/5.14.4/js/themes/Dark.js,sha256=iJnRcS0v77EafJHvT2uEVmKWWyba8ipVVv3LTDf5EZ8,1423
|
|
125
|
+
ledger/static/ledger/libs/datatables/2.3.5/css/dataTables.bootstrap5.css,sha256=HjwLw2imCA3dJRk_F4tO2LodL7mhAY40fvK1AC_IrA0,21836
|
|
126
|
+
ledger/static/ledger/libs/datatables/2.3.5/js/dataTables.bootstrap5.js,sha256=xCR5dNQFGw22aCegxfObgHhUSRG8B3Wu93D0nB2twMo,2719
|
|
127
|
+
ledger/static/ledger/libs/datatables/2.3.5/js/dataTables.js,sha256=NrS03fsOjj1hheZVoElD4Mq4Z631Xw_uWYPfSDdTLB0,392659
|
|
128
|
+
ledger/static/ledger/libs/datatables/Extensions/ColumnControl/1.1.1/css/columnControl.bootstrap5.css,sha256=BiXRZCSI0IX4CNdRqT015qHme92oQF3c7EQoDVjOhfQ,15122
|
|
129
|
+
ledger/static/ledger/libs/datatables/Extensions/ColumnControl/1.1.1/css/columnControl.dataTables.css,sha256=P8sStoLhUnFc10w2acgBhpiaDAMoQ9PWP7U29oN2jPk,15392
|
|
130
|
+
ledger/static/ledger/libs/datatables/Extensions/ColumnControl/1.1.1/js/columnControl.bootstrap5.js,sha256=-BWn5bE9rqkwMrlx17nQMw6jhUlJ1sC0Yn9Z_XxL464,1696
|
|
131
|
+
ledger/static/ledger/libs/datatables/Extensions/ColumnControl/1.1.1/js/dataTables.columnControl.js,sha256=bhrlFQytGvK0EmDwLgJb5U_gmSDwPFp5AYwRTU7YPMA,109219
|
|
132
|
+
ledger/static/ledger/libs/datatables/Extensions/FixedHeader/4.0.4/css/fixedHeader.bootstrap5.css,sha256=jEwbzMi24mozNBHCQTPDA8C5AHX90ra34RNG4F9SuTc,463
|
|
133
|
+
ledger/static/ledger/libs/datatables/Extensions/FixedHeader/4.0.4/js/dataTables.fixedHeader.js,sha256=XPfLXPe04eGpgFLSUQtu1TJnDITcfrT3YvIZolq4L7I,31148
|
|
134
|
+
ledger/static/ledger/libs/datatables/Extensions/FixedHeader/4.0.4/js/fixedHeader.bootstrap5.js,sha256=HHpn0BRTTsbJ74Qma5f93iVhKugNA90bPL9qehwZ7ug,1287
|
|
135
|
+
ledger/templates/ledger/base.html,sha256=VBpUWXXMm2wBrD4GBALsq-rYH8DL1kDDcmsWGHC658M,3313
|
|
136
|
+
ledger/templates/ledger/view-administration.html,sha256=wAd_6zFXkGe1nokhf_Iy09DOJlhMAGo7Gr4oU-5vUxw,3229
|
|
137
|
+
ledger/templates/ledger/view-alliance-administration.html,sha256=v_a2WJK-WVNYcF8fdkWzX7kWlRsAPKkkO6Hzkd8X_2M,1651
|
|
138
|
+
ledger/templates/ledger/view-alliance-ledger.html,sha256=ywuRRtpz8tT2UnwibXF0N6PU2TlwuqRmsy2_RhtIjaI,3022
|
|
139
|
+
ledger/templates/ledger/view-alliance-overview.html,sha256=LimANGXbr_QlnFBFUny1OO--uUFLfkhG9OuYkCOl1bU,5469
|
|
140
|
+
ledger/templates/ledger/view-character-administration.html,sha256=tbmawWBznoyV2uMY18XG57fPr7s5eQnVhCeCWBrsTao,1347
|
|
141
|
+
ledger/templates/ledger/view-character-ledger.html,sha256=9NY9-0QzALc95GWNns73cVb3RJ5QBaRliZ6e5Zaafig,3097
|
|
142
|
+
ledger/templates/ledger/view-character-overview.html,sha256=B0MAxRhta93RiNFllHJz_sia8r2hYl525S5iB1GXcbk,5683
|
|
143
|
+
ledger/templates/ledger/view-character-planetary-overview.html,sha256=l7CcnkT0x_H1IufD3fAQkU-P-9lGsbV_9RIEFUsOOBc,5667
|
|
144
|
+
ledger/templates/ledger/view-character-planetary.html,sha256=dro-AajfXRfAB9V1oF19GB-TzDVCHO7Rj0KD0pK3Se4,2753
|
|
145
|
+
ledger/templates/ledger/view-corporation-administration.html,sha256=Lg14Rs3bSruq_twxFCdJyNR47kO6Xbc7qMmm1hMiI-U,1368
|
|
146
|
+
ledger/templates/ledger/view-corporation-ledger.html,sha256=3_pRQihjzfdggFRQnxu143dwltXD7lIzVCf_oXU8g1I,3161
|
|
147
|
+
ledger/templates/ledger/view-corporation-overview.html,sha256=CtFHH4PfP0NhZwlfHr_OhuTPQwmKXpTXW1qiFfnkoaU,5514
|
|
148
|
+
ledger/templates/ledger/bundles/aa-ledger-css.html,sha256=IxagpNVqdSqnJcyonlDkfOaNXjFV8v3cPNX7-4gOIq0,60
|
|
149
|
+
ledger/templates/ledger/bundles/aa-ledger-js.html,sha256=93aqL5Ew2SVOJknAC2V3tUObku3vOt9HDmeupdUaseo,58
|
|
150
|
+
ledger/templates/ledger/bundles/view-alliance-administration-js.html,sha256=8Ymz7WpxarJKRYkbhLqUy0AzN7lN6-3AlG51pOLSfuU,2115
|
|
151
|
+
ledger/templates/ledger/bundles/view-alliance-ledger-js.html,sha256=NeclSZPnW7TrO0CBRgBsB4X6EJCu2-rH6o5lbtDHa5Q,551
|
|
152
|
+
ledger/templates/ledger/bundles/view-character-administration-js.html,sha256=G_9NotUgTf0-FWtQFYIpLBPu6rRVuXgpCEmvAOLyDt0,2421
|
|
153
|
+
ledger/templates/ledger/bundles/view-character-ledger-js.html,sha256=9vF9yydAug_NjMnnUuXS-0ncZoK9fEImSgyUYeo42IM,568
|
|
154
|
+
ledger/templates/ledger/bundles/view-character-planetary-css.html,sha256=kV7vVdogGzLfjqLRKHAJN46_8KNcFrSb_W_WxDAfAWY,60
|
|
155
|
+
ledger/templates/ledger/bundles/view-character-planetary-js.html,sha256=ILGAR8igTOkEXHn00z9y8-RVXaTFB_9DbBxUG3Yc67k,119
|
|
156
|
+
ledger/templates/ledger/bundles/view-corporation-administration-js.html,sha256=EkIEGi0VAUonho1j70wVBZFNL1NM6hn-wWkO9wCzX0o,2403
|
|
157
|
+
ledger/templates/ledger/bundles/view-corporation-ledger-js.html,sha256=JajkrGpq7s2d_j69Gkgil-1h2jCE4I0m8cKJzZ9H5LI,570
|
|
158
|
+
ledger/templates/ledger/partials/modal/confirm.html,sha256=7LwmZji_dZ3gVWnT56LRghE9u7jFS-Z4xxtLXxn0DB0,1402
|
|
159
|
+
ledger/templates/ledger/partials/modal/modal.html,sha256=r1k1qZ4jLQomA2ZEJwGe3IXMkxjpMOVYyxcXO6XUWnA,1246
|
|
160
|
+
ledger/templates/ledger/partials/modal/request-accept-delete-alliance.html,sha256=4YKPlqYELpEwL6aND_BXdRs81W5Ha-NmWEMCQjUVViQ,1508
|
|
161
|
+
ledger/templates/ledger/partials/modal/request-accept-delete-character.html,sha256=bofaA_kDuyVJPTT61jbVOBLD44VJJHrSge47W4zWWZE,1512
|
|
162
|
+
ledger/templates/ledger/partials/modal/request-accept-delete-corporation.html,sha256=ct4q22t9hUJJlRydvRvj0r8EGcdUj7NVY9qcUajvuaw,1520
|
|
163
|
+
ledger/templates/ledger/partials/modal/request-accept-switch-notification.html,sha256=NTL1kX9QZR8BI6ehTr6-3bvEHo_3Zc7yZVL7_Qch2dc,1542
|
|
164
|
+
ledger/templates/ledger/partials/modal/request-view-alliance-details.html,sha256=31OMzp-JtXVqEcI7AvuET3B67RDh3NmpbplkditFkec,1189
|
|
165
|
+
ledger/templates/ledger/partials/modal/request-view-character-details.html,sha256=0e3RUvgPNemjc_P1kCC5n30F4wJa71uX9mwihWeEvtQ,1193
|
|
166
|
+
ledger/templates/ledger/partials/modal/request-view-corporation-details.html,sha256=Tn-0RVS51bKO9ZwAojqJZpyVFLA8R_Rj-yfx4xU1ILA,1201
|
|
167
|
+
ledger/templates/ledger/partials/modal/request-view-extractor.html,sha256=hZQjMvJy4nMl-1Qa54MlXkP96ySXaWskzxKkJ3KbrzM,1481
|
|
168
|
+
ledger/templates/ledger/partials/modal/request-view-factory.html,sha256=z-cYkKM25lF0040ss3bXV_jzq9UTIF50q-uRSnV46JQ,1515
|
|
169
|
+
ledger/templates/ledger/partials/navigation/administration.html,sha256=VGRd5NrBKACGVLnN1WgPc6AhJke0hvl3KE5feC3jd0g,901
|
|
170
|
+
ledger/templates/ledger/partials/navigation/navigation.html,sha256=jfyp-HLX4RUs_jdQDp0WvWvsUPdTfEWQoOhzOpHERYU,803
|
|
171
|
+
ledger/templates/ledger/partials/view-alliance-administration/alliance.html,sha256=AoesbBRNphJh2OSE3sUjatYG6slBaseE6NW-ipLLR0w,1537
|
|
172
|
+
ledger/templates/ledger/partials/view-alliance-administration/alliance_corporations.html,sha256=t8jyaXlyTT-_y7NRXGn1bQ3Rp4n3GFNoODuTzYsg-ns,2728
|
|
173
|
+
ledger/templates/ledger/partials/view-alliance-administration/dashboard.html,sha256=rfsihpYvKSQ8ppP4SgEj70YsVzWJ92PMm_w2dAehZHk,3648
|
|
174
|
+
ledger/templates/ledger/partials/view-alliance-ledger/alliance-billboard.html,sha256=cWDc0etf6IkClcjWFyt3BRmQh_46a2MfhQFoSzIFTR0,739
|
|
175
|
+
ledger/templates/ledger/partials/view-alliance-ledger/alliance-ledger-details.html,sha256=qrYm6EzvQbUuzUy0canJF2xN-lpc5OVzXCighXobalY,1183
|
|
176
|
+
ledger/templates/ledger/partials/view-alliance-ledger/alliance-table.html,sha256=UrUDdQqCxQ4wlvBq_mTGn9Dk7c93hqJkLrR-BTmrD4I,875
|
|
177
|
+
ledger/templates/ledger/partials/view-alliance-ledger/information/daily.html,sha256=n67tkZRtyYYyCrneZQ3p_i16z_SM2G4MzVLlulCYetA,623
|
|
178
|
+
ledger/templates/ledger/partials/view-alliance-ledger/information/hourly.html,sha256=2mppZ382p6Scw8AVSyUL6RaSAqn3uuiEgzCQ-1VeRYc,628
|
|
179
|
+
ledger/templates/ledger/partials/view-alliance-ledger/information/summary.html,sha256=nMweaBUxyno2v6VB0XB9gXzHVHRJoaqq7MHL6otkBEM,656
|
|
180
|
+
ledger/templates/ledger/partials/view-character-administration/character.html,sha256=ChFDMiNyjVbHa55BYM5zWkq0k3URMEsg2tUYQTITJ78,2962
|
|
181
|
+
ledger/templates/ledger/partials/view-character-administration/dashboard.html,sha256=b9-MTQFkczO8jLZR40i9a7Y_6WCSussnSTwipIah0Q4,3864
|
|
182
|
+
ledger/templates/ledger/partials/view-character-ledger/character-billboard.html,sha256=cWDc0etf6IkClcjWFyt3BRmQh_46a2MfhQFoSzIFTR0,739
|
|
183
|
+
ledger/templates/ledger/partials/view-character-ledger/character-ledger-details.html,sha256=kLnBFFr0rdqLteMcgdFakw4LMPKPQOBga2pbv41orGA,1187
|
|
184
|
+
ledger/templates/ledger/partials/view-character-ledger/character-table.html,sha256=oN0HpwRAqTZKsNoedX2JFb548yZc5Zf0WzD12YDqh7c,948
|
|
185
|
+
ledger/templates/ledger/partials/view-character-ledger/information/daily.html,sha256=QJgI1P9hHK-nG0K3A6m_0zK_2eZuIeqGEtr1L7KOQs4,624
|
|
186
|
+
ledger/templates/ledger/partials/view-character-ledger/information/hourly.html,sha256=VG_gFbvkDW3Vti56PzB62b_NRnQi5bEPZ4sY8_r-Pqo,629
|
|
187
|
+
ledger/templates/ledger/partials/view-character-ledger/information/summary.html,sha256=oydbaY0NXyve5K9E1_jc9La8WByuh61lYfe1DWLqzT4,657
|
|
188
|
+
ledger/templates/ledger/partials/view-character-planetary/extractor-table.html,sha256=fjFmpJtQGAICpYBndqDQ279xuqEMMyL8RfUtYTsbzVs,869
|
|
189
|
+
ledger/templates/ledger/partials/view-character-planetary/factory-table.html,sha256=vuOK8MPIqZ6DBN4pg0u0Gbz2xwDLNp4kfjbvJpWrj7M,868
|
|
190
|
+
ledger/templates/ledger/partials/view-character-planetary/planetary-table.html,sha256=GgxxsVYM-dbXdgCdZkJzbu0h9y67jz_XQwUJ9Z3E_mw,925
|
|
191
|
+
ledger/templates/ledger/partials/view-character-planetary/storage-table.html,sha256=D9e3uPAGwOEag62DKbgp_WOnzKfRRAnMIWjneueT6vE,812
|
|
192
|
+
ledger/templates/ledger/partials/view-corporation-administration/corporation.html,sha256=AgL16P4cua-ZWGzeC6lbVecAC6xpdKYTrjWjaQz0lA8,2436
|
|
193
|
+
ledger/templates/ledger/partials/view-corporation-administration/corporation_characters.html,sha256=svrwbZVBKN2yrkIPVVimAGJ-i6I876Lp28xanFl1gcE,1338
|
|
194
|
+
ledger/templates/ledger/partials/view-corporation-administration/dashboard.html,sha256=thywnGiyQ9US9b_2S5uLVcX_IQ-BRA8xH0Bh11kxh0o,3682
|
|
195
|
+
ledger/templates/ledger/partials/view-corporation-ledger/corporation-billboard.html,sha256=cWDc0etf6IkClcjWFyt3BRmQh_46a2MfhQFoSzIFTR0,739
|
|
196
|
+
ledger/templates/ledger/partials/view-corporation-ledger/corporation-ledger-details.html,sha256=Lf2hyQdxDqpySJZj_50gt0cB9I9BNGhDTAHTC8lKMgs,1195
|
|
197
|
+
ledger/templates/ledger/partials/view-corporation-ledger/corporation-table.html,sha256=BGhC4Pcw7ij3XW2w4KuD8r17wrz4KAhPPSCvkn1T8fQ,1073
|
|
198
|
+
ledger/templates/ledger/partials/view-corporation-ledger/information/daily.html,sha256=HrL3ffDgrr04GFAZHwMrtL6IP4AZVMGidiqAS-USpf4,626
|
|
199
|
+
ledger/templates/ledger/partials/view-corporation-ledger/information/hourly.html,sha256=vr9z3wGrUURSRf6AvsDZeG18E2Gl6pUJcZbMBIpR4es,631
|
|
200
|
+
ledger/templates/ledger/partials/view-corporation-ledger/information/summary.html,sha256=bvyHfTEA8O1LD1jnq_apxeqO7HxdddthLhFujCtutvA,659
|
|
201
|
+
ledger/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
202
|
+
ledger/templatetags/ledger.py,sha256=g_vuKIqBhU-zq34SX98tbEdNzqqOmTuYlPCfCV1-1Iw,2063
|
|
203
|
+
ledger/tests/__init__.py,sha256=_0Y3Pg-kgzt0GuszrNth_4bjngzfdPD8c8_p9kJqAo8,6603
|
|
204
|
+
ledger/tests/test_admin.py,sha256=fXtxo3mgD1zNidQhOeQCChAImj2kg3MFIOjOdvJdyy8,11526
|
|
205
|
+
ledger/tests/test_auth_hook.py,sha256=QD7eVmxnaIgXLOZUlbGqqmPF_S95i0eTAtbm_yVBGw4,2688
|
|
206
|
+
ledger/tests/test_decarators.py,sha256=fNmLOlucGcqacNWXlshMEwe8V-zYPYIkFOGLKogUqKM,880
|
|
207
|
+
ledger/tests/test_discord_installed.py,sha256=4M9kmaVB-z6aCpsnFMqUtOvDV-p03vGEUB6MEu7Of5w,986
|
|
208
|
+
ledger/tests/test_templatetags.py,sha256=cTpifCMuo2ex_jrOkDnr-SGKzz0oeOZatc0TYm_oru8,1828
|
|
209
|
+
ledger/tests/test_helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
210
|
+
ledger/tests/test_helpers/test_ledger_data.py,sha256=x_ZP3AktUHdh6TPzpU2NXe5B_h2KND-qyTlLoZFLQ0M,626
|
|
211
|
+
ledger/tests/test_managers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
212
|
+
ledger/tests/test_managers/test_character_audit_manager.py,sha256=1HWRikw3xp70sLM7Z-Yfp-w_XAoHMpIgqiC9j-zpisg,8830
|
|
213
|
+
ledger/tests/test_managers/test_character_journal_manager.py,sha256=WoMDAOvI6HNqJAnaCm1MzgalcKbgm2r-MmPjI1SIwqA,7475
|
|
214
|
+
ledger/tests/test_managers/test_character_mining_manager.py,sha256=WyAyX-w24bcCR5OnXyRmgrY-_3DNxLcYtZjLUI2v1sY,2351
|
|
215
|
+
ledger/tests/test_managers/test_corporation_division_manager.py,sha256=BozUVEqJ-0RDXhHw1k6_vfCFY2TNYGmEb7TuMgk1Fo4,3722
|
|
216
|
+
ledger/tests/test_managers/test_corporation_journal_manager.py,sha256=UJB1J8VhmeHG1ZJAGbYvY9-QlPMUDFOSx42qZhE7cYc,8273
|
|
217
|
+
ledger/tests/test_managers/test_general_manager.py,sha256=Sugn_3aTCkGhiDP0EDgI3QLZIJj4VZNfQe02WazuRO4,4290
|
|
218
|
+
ledger/tests/test_managers/test_planetary_manager.py,sha256=fZd_CcJIQLmYl0PN7GCnlxqQAGNM615-RKayE2teysc,4341
|
|
219
|
+
ledger/tests/test_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
220
|
+
ledger/tests/test_models/test_characteraudit.py,sha256=VTKAzXOLJM2yYyYS63UfYPAxdwmC-bAqZ_xVxQIkjIw,3813
|
|
221
|
+
ledger/tests/test_models/test_characterminingledger.py,sha256=mCxmh8SX_-x5n5OB8DRoVMLAvDUVYXr2AxhbbhkVVLo,3269
|
|
222
|
+
ledger/tests/test_models/test_characterwalletjournal.py,sha256=VvMAKJTQtDoPih76mKZC8Q7a-_yT8YouDzLzI_Caq_4,1862
|
|
223
|
+
ledger/tests/test_models/test_corporationaudit.py,sha256=rsYaCC72q-AaCCQ7GNbUtiQdy4jEH60gYXj0qKkNpEs,2694
|
|
224
|
+
ledger/tests/test_models/test_corporationwalletjournal.py,sha256=EtbquDeuEeyZAZd180mc7UpJHnqKEv_6cP7Ro91ZrWw,2644
|
|
225
|
+
ledger/tests/test_models/test_general.py,sha256=YzL3Dynb1iH9uWDO0OxT5E_WoXu5qsGGT_kvOdN32NY,3775
|
|
226
|
+
ledger/tests/test_models/test_planetary.py,sha256=nzz2jesvu6sQK-O-6qCkZUMj8VcZpYaq4VEoH1ICWnY,1915
|
|
227
|
+
ledger/tests/test_views/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
228
|
+
ledger/tests/test_views/test_access.py,sha256=7FaTNXeRHsgxBEDBq8RanKnLBcyJlNWyiqujjvPOXPs,29101
|
|
229
|
+
ledger/tests/test_views/test_add_ally.py,sha256=XGZfbqQhUC6P5v5fiIwudsh0FEacl-k0KFwso8jsw9k,4958
|
|
230
|
+
ledger/tests/test_views/test_add_char.py,sha256=63rz0lANewh5N1AmILKUqnN9UfWtmG7zi4Hv3HSPhcc,1593
|
|
231
|
+
ledger/tests/test_views/test_delete_character.py,sha256=nbKSqfH1DhIxHaBMLXC0ljdTTY3nA4DRQ2DmnPtx0SQ,2351
|
|
232
|
+
ledger/tests/test_views/corporation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
233
|
+
ledger/tests/test_views/corporation/test_add_corp.py,sha256=1HqEx6FNDcf_cRXAfBatdQTPsP653g-4N4k80TUIPo0,1546
|
|
234
|
+
ledger/tests/test_views/corporation/test_delete_corporation.py,sha256=5CUG_6m1avWykv3wR0AVBwy_5jokrWJraszpJpdmPZ0,3937
|
|
235
|
+
ledger/tests/testdata/README_ESI_STUB.md,sha256=J-XlL-0iY2bRX4m4f7Jn65UwSwtRvz74nKANqZhnp9s,12202
|
|
236
|
+
ledger/tests/testdata/esi_stub_openapi.py,sha256=2TqHmSJrSe-tk7K0y54L8rNfzSsMzSIf6syyvnxWSqo,18277
|
|
237
|
+
ledger/tests/testdata/esi_test_data.json,sha256=55_QXZ5vn2eVQxgNxv9xncHqC7jFTtaySj-02Jo4Dxs,14989
|
|
238
|
+
ledger/tests/testdata/test_esi_stub.py,sha256=I4u4T6l4jEDWAo4VqioNBejgqBYegJfiMrHivBsxBis,17430
|
|
239
|
+
ledger/tests/testdata/utils.py,sha256=32CyTyTqbhyDw6yvlT4qRe7MkfYNFYUjZeVOL-_gOOQ,19767
|
|
240
|
+
ledger/tests/testdata/integrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
241
|
+
ledger/tests/testdata/integrations/allianceauth.json,sha256=5WSxh0fL693yDQ-LqqU3X39bVxJU6eqNSdC8DkgDDgM,6970
|
|
242
|
+
ledger/tests/testdata/integrations/allianceauth.py,sha256=xPYspCmyGWaR0TiFapL-t6qrpWwZqFGdumQ3-zeLN3g,2483
|
|
243
|
+
ledger/tests/testdata/integrations/eveentity.json,sha256=smrjDGZlxadtI_Rg3JQb3MmeeFuc5cMu_eMwQsl6jpI,3198
|
|
244
|
+
ledger/tests/testdata/integrations/eveentity.py,sha256=GJvTNQmp6sCrixQzo-8Nse_OgRdlcQlNdBLDJZppB2Y,672
|
|
245
|
+
ledger/tests/testdata/integrations/eveuniverse.json,sha256=N-ahXuBO1YetAVPDTL8beKgC0EUXZ_J_p6fefCPZvN4,14693
|
|
246
|
+
ledger/tests/testdata/integrations/eveuniverse.py,sha256=hb8ayOpIV7DuxJzQZeJK9-YdLct_6QOG0BdpgH71lBc,432
|
|
247
|
+
ledger/tests/testdata/integrations/planetary.json,sha256=-aOHKgXtljZfnypBrWiwGg-gu4nkuJxFBUWT6VG9wH8,10972
|
|
248
|
+
ledger/tests/testdata/integrations/planetary.py,sha256=lgh-ZVUsxeEJwhhbs_85VyKwqYep-HH6ZQwTQzOkNAo,305
|
|
249
|
+
ledger/tests/testdata/json/factory.json,sha256=RD9kTKERMw1GEaB5md-Ju-LODUWzsOLecvTxaaAMNoQ,8563
|
|
250
|
+
ledger/tests/testdata/json/inactive.json,sha256=RD9kTKERMw1GEaB5md-Ju-LODUWzsOLecvTxaaAMNoQ,8563
|
|
251
|
+
ledger/tests/testdata/json/pins.json,sha256=5kJlck3Zjivo7-QAT3OedUh-M9lkK2F4jmrUSe5zwYQ,6877
|
|
252
|
+
ledger/tests/testdata/json/route.json,sha256=1iZFj0AbA_09QJuEc2d3GjmZlkxa1TkAOsuZocQJlXg,3705
|
|
253
|
+
ledger/thirdparty/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
254
|
+
ledger/thirdparty/charlink_hook.py,sha256=vnCPJync91JswtVx93yeIoloecoGECeYmk9JRX6pExU,5491
|
|
255
|
+
ledger/views/__init__.py,sha256=uCQVEhylCAIgHm6C92esI9hI_o19A02kZPwxWqbwdao,13
|
|
256
|
+
ledger/views/index.py,sha256=ad5iZSp71iDEyJCx6uE1Qi3AHMGa1kKU0TM1swjySLY,4544
|
|
257
|
+
ledger/views/alliance/add_ally.py,sha256=5N_hGhQHJcbHeXLNcSkiigZhLWBGvUOTsZfmNvPNTso,2641
|
|
258
|
+
ledger/views/alliance/alliance_ledger.py,sha256=0IbZCjQ2tR_tEkKtVwssw0N2NhD5KwqWMdQSgDU4D1c,4345
|
|
259
|
+
ledger/views/character/add_char.py,sha256=fNPqZ6A-zsbsAnJHlt39DzJzQn0QC06ih55FyHk1prA,1421
|
|
260
|
+
ledger/views/character/character_ledger.py,sha256=xIK0JWQg_B7jYHE40Mb6_Z7HOiADQ2y8tM9pHOU_TRk,5162
|
|
261
|
+
ledger/views/character/planetary.py,sha256=cHyuUNQlYSy9ce2STE4LLoSfk5GuNEqF4tYM8UWHxRo,1401
|
|
262
|
+
ledger/views/corporation/add_corp.py,sha256=uRjNBSvUOw7s4lX_JKZIbChZVGBFTEOuV_umyYGlbAM,1793
|
|
263
|
+
ledger/views/corporation/corporation_ledger.py,sha256=6C5oftNBTHEeYwm9iwMi2WQ8GmuPwpG2IMsuI51l-3s,5488
|
|
264
|
+
aa_ledger-2.0.0.dist-info/METADATA,sha256=Nd8edfYLnz2HynSAD6puTo5ztSKcqCMUlbPUNC1lI4Q,50988
|
|
265
|
+
aa_ledger-2.0.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
266
|
+
aa_ledger-2.0.0.dist-info/licenses/LICENSE,sha256=2oHuqnDfrjCrYAM1--Wyhv8jO3VBpnrq8zkABGzB8N8,35109
|
|
267
|
+
aa_ledger-2.0.0.dist-info/RECORD,,
|
ledger/__init__.py
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"""Initialize the app"""
|
|
2
2
|
|
|
3
|
-
__version__ = "
|
|
3
|
+
__version__ = "2.0.0"
|
|
4
4
|
__title__ = "Ledger"
|
|
5
5
|
|
|
6
6
|
__package_name__ = "aa-ledger"
|
|
7
7
|
__app_name__ = "ledger"
|
|
8
|
-
__esi_compatibility_date__ = "2025-
|
|
8
|
+
__esi_compatibility_date__ = "2025-12-16"
|
|
9
9
|
__app_name_useragent__ = "AA-Ledger"
|
|
10
10
|
|
|
11
11
|
__github_url__ = f"https://github.com/Geuthur/{__package_name__}"
|
ledger/admin.py
CHANGED
|
@@ -13,8 +13,8 @@ from django.utils.translation import gettext_lazy as _
|
|
|
13
13
|
from allianceauth.eveonline.evelinks import eveimageserver
|
|
14
14
|
|
|
15
15
|
# AA Ledger
|
|
16
|
-
from ledger.models.characteraudit import
|
|
17
|
-
from ledger.models.corporationaudit import
|
|
16
|
+
from ledger.models.characteraudit import CharacterOwner, CharacterUpdateStatus
|
|
17
|
+
from ledger.models.corporationaudit import CorporationOwner, CorporationUpdateStatus
|
|
18
18
|
from ledger.tasks import update_character, update_corporation
|
|
19
19
|
|
|
20
20
|
|
|
@@ -84,7 +84,7 @@ class CorporationUpdateStatusAdminInline(admin.TabularInline):
|
|
|
84
84
|
return timesince(started_at, finished_at)
|
|
85
85
|
|
|
86
86
|
|
|
87
|
-
@admin.register(
|
|
87
|
+
@admin.register(CorporationOwner)
|
|
88
88
|
class CorporationAuditAdmin(admin.ModelAdmin):
|
|
89
89
|
list_display = (
|
|
90
90
|
"_entity_pic",
|
|
@@ -97,11 +97,14 @@ class CorporationAuditAdmin(admin.ModelAdmin):
|
|
|
97
97
|
"_corporation__corporation_id",
|
|
98
98
|
)
|
|
99
99
|
|
|
100
|
-
list_select_related = ("
|
|
100
|
+
list_select_related = ("eve_corporation",)
|
|
101
101
|
|
|
102
|
-
ordering = ["
|
|
102
|
+
ordering = ["eve_corporation__corporation_name"]
|
|
103
103
|
|
|
104
|
-
search_fields = [
|
|
104
|
+
search_fields = [
|
|
105
|
+
"eve_corporation__corporation_name",
|
|
106
|
+
"eve_corporation__corporation_id",
|
|
107
|
+
]
|
|
105
108
|
|
|
106
109
|
actions = [
|
|
107
110
|
"delete_objects",
|
|
@@ -120,19 +123,21 @@ class CorporationAuditAdmin(admin.ModelAdmin):
|
|
|
120
123
|
)
|
|
121
124
|
|
|
122
125
|
@admin.display(description="")
|
|
123
|
-
def _entity_pic(self, obj:
|
|
124
|
-
eve_id = obj.
|
|
126
|
+
def _entity_pic(self, obj: CorporationOwner):
|
|
127
|
+
eve_id = obj.eve_corporation.corporation_id
|
|
125
128
|
return format_html(
|
|
126
129
|
'<img src="{}" class="img-circle">',
|
|
127
130
|
eveimageserver._eve_entity_image_url("corporation", eve_id, 32),
|
|
128
131
|
)
|
|
129
132
|
|
|
130
|
-
@admin.display(
|
|
131
|
-
|
|
132
|
-
|
|
133
|
+
@admin.display(
|
|
134
|
+
description="Corporation ID", ordering="eve_corporation__corporation_id"
|
|
135
|
+
)
|
|
136
|
+
def _corporation__corporation_id(self, obj: CorporationOwner):
|
|
137
|
+
return obj.eve_corporation.corporation_id
|
|
133
138
|
|
|
134
139
|
@admin.display(ordering="last_update_at", description=_("last update run"))
|
|
135
|
-
def _last_update_at(self, obj:
|
|
140
|
+
def _last_update_at(self, obj: CorporationOwner):
|
|
136
141
|
return naturaltime(obj.last_update_at) if obj.last_update_at else "-"
|
|
137
142
|
|
|
138
143
|
# pylint: disable=unused-argument
|
|
@@ -169,9 +174,9 @@ class CharacterUpdateStatusAdminInline(admin.TabularInline):
|
|
|
169
174
|
"_is_success",
|
|
170
175
|
"_is_token_ok",
|
|
171
176
|
"error_message",
|
|
172
|
-
"
|
|
177
|
+
"last_run_finished_at",
|
|
173
178
|
"_run_duration",
|
|
174
|
-
"
|
|
179
|
+
"last_update_finished_at",
|
|
175
180
|
"_update_duration",
|
|
176
181
|
)
|
|
177
182
|
readonly_fields = (
|
|
@@ -226,7 +231,7 @@ class CharacterUpdateStatusAdminInline(admin.TabularInline):
|
|
|
226
231
|
return timesince(started_at, finished_at)
|
|
227
232
|
|
|
228
233
|
|
|
229
|
-
@admin.register(
|
|
234
|
+
@admin.register(CharacterOwner)
|
|
230
235
|
class CharacterAuditAdmin(admin.ModelAdmin):
|
|
231
236
|
list_display = (
|
|
232
237
|
"_entity_pic",
|
|
@@ -262,7 +267,7 @@ class CharacterAuditAdmin(admin.ModelAdmin):
|
|
|
262
267
|
)
|
|
263
268
|
|
|
264
269
|
@admin.display(description="")
|
|
265
|
-
def _entity_pic(self, obj:
|
|
270
|
+
def _entity_pic(self, obj: CharacterOwner):
|
|
266
271
|
eve_id = obj.eve_character.character_id
|
|
267
272
|
return format_html(
|
|
268
273
|
'<img src="{}" class="img-circle">',
|
|
@@ -272,11 +277,11 @@ class CharacterAuditAdmin(admin.ModelAdmin):
|
|
|
272
277
|
@admin.display(
|
|
273
278
|
description="Character Name", ordering="eve_character__character_name"
|
|
274
279
|
)
|
|
275
|
-
def _eve_character__character_name(self, obj:
|
|
280
|
+
def _eve_character__character_name(self, obj: CharacterOwner):
|
|
276
281
|
return obj.eve_character.character_name
|
|
277
282
|
|
|
278
283
|
@admin.display(ordering="last_update_at", description=_("last update run"))
|
|
279
|
-
def _last_update_at(self, obj:
|
|
284
|
+
def _last_update_at(self, obj: CharacterOwner):
|
|
280
285
|
return naturaltime(obj.last_update_at) if obj.last_update_at else "-"
|
|
281
286
|
|
|
282
287
|
# pylint: disable=unused-argument
|
ledger/api/__init__.py
CHANGED
|
@@ -8,14 +8,12 @@ from django.conf import settings
|
|
|
8
8
|
# Alliance Auth
|
|
9
9
|
from allianceauth.services.hooks import get_extension_logger
|
|
10
10
|
|
|
11
|
-
# Alliance Auth (External Libs)
|
|
12
|
-
from app_utils.logging import LoggerAddTag
|
|
13
|
-
|
|
14
11
|
# AA Ledger
|
|
15
12
|
from ledger import __title__
|
|
16
|
-
from ledger.api import
|
|
13
|
+
from ledger.api import admin, alliance, character, corporation, planetary
|
|
14
|
+
from ledger.providers import AppLogger
|
|
17
15
|
|
|
18
|
-
logger =
|
|
16
|
+
logger = AppLogger(get_extension_logger(__name__), __title__)
|
|
19
17
|
|
|
20
18
|
|
|
21
19
|
api = NinjaAPI(
|
|
@@ -26,5 +24,23 @@ api = NinjaAPI(
|
|
|
26
24
|
openapi_url=settings.DEBUG and "/openapi.json" or "",
|
|
27
25
|
)
|
|
28
26
|
|
|
29
|
-
|
|
30
|
-
|
|
27
|
+
|
|
28
|
+
def setup(ninja_api):
|
|
29
|
+
admin.AdminApiEndpoints(ninja_api)
|
|
30
|
+
|
|
31
|
+
# Character Endpoints
|
|
32
|
+
character.CharacterApiEndpoints(ninja_api)
|
|
33
|
+
character.CharacterDetailsApiEndpoints(ninja_api)
|
|
34
|
+
planetary.PlanetaryApiEndpoints(ninja_api)
|
|
35
|
+
|
|
36
|
+
# Corporation Endpoints
|
|
37
|
+
corporation.CorporationApiEndpoints(ninja_api)
|
|
38
|
+
corporation.CorporationDetailsApiEndpoints(ninja_api)
|
|
39
|
+
|
|
40
|
+
# Alliance Endpoints
|
|
41
|
+
alliance.AllianceApiEndpoints(ninja_api)
|
|
42
|
+
alliance.AllianceDetailsApiEndpoints(ninja_api)
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
# Initialize API endpoints
|
|
46
|
+
setup(api)
|
|
@@ -12,24 +12,22 @@ from allianceauth.authentication.models import CharacterOwnership, UserProfile
|
|
|
12
12
|
from allianceauth.eveonline.models import EveCorporationInfo
|
|
13
13
|
from allianceauth.services.hooks import get_extension_logger
|
|
14
14
|
|
|
15
|
-
# Alliance Auth (External Libs)
|
|
16
|
-
from app_utils.logging import LoggerAddTag
|
|
17
|
-
|
|
18
15
|
# AA Ledger
|
|
19
16
|
from ledger import __title__
|
|
20
17
|
from ledger.api import schema
|
|
21
|
-
from ledger.api.helpers import (
|
|
18
|
+
from ledger.api.helpers.core import (
|
|
22
19
|
get_all_corporations_from_alliance,
|
|
23
|
-
|
|
24
|
-
|
|
20
|
+
get_characterowner_or_none,
|
|
21
|
+
get_corporationowner_or_none,
|
|
25
22
|
)
|
|
26
|
-
from ledger.models.characteraudit import
|
|
27
|
-
from ledger.models.corporationaudit import
|
|
23
|
+
from ledger.models.characteraudit import CharacterOwner
|
|
24
|
+
from ledger.models.corporationaudit import CorporationOwner
|
|
25
|
+
from ledger.providers import AppLogger
|
|
28
26
|
|
|
29
|
-
logger =
|
|
27
|
+
logger = AppLogger(get_extension_logger(__name__), __title__)
|
|
30
28
|
|
|
31
29
|
|
|
32
|
-
class
|
|
30
|
+
class AdminApiEndpoints:
|
|
33
31
|
tags = ["LedgerAdmin"]
|
|
34
32
|
|
|
35
33
|
# pylint: disable=too-many-statements
|
|
@@ -40,7 +38,7 @@ class LedgerAdminApiEndpoints:
|
|
|
40
38
|
tags=self.tags,
|
|
41
39
|
)
|
|
42
40
|
def get_character_overview(request):
|
|
43
|
-
chars_visible =
|
|
41
|
+
chars_visible = CharacterOwner.objects.visible_to(request.user)
|
|
44
42
|
|
|
45
43
|
if chars_visible is None:
|
|
46
44
|
return 403, "Permission Denied"
|
|
@@ -78,7 +76,7 @@ class LedgerAdminApiEndpoints:
|
|
|
78
76
|
tags=self.tags,
|
|
79
77
|
)
|
|
80
78
|
def get_planetary_overview(request):
|
|
81
|
-
chars_ids =
|
|
79
|
+
chars_ids = CharacterOwner.objects.visible_eve_characters(
|
|
82
80
|
request.user
|
|
83
81
|
).values_list("character_id", flat=True)
|
|
84
82
|
|
|
@@ -114,7 +112,7 @@ class LedgerAdminApiEndpoints:
|
|
|
114
112
|
tags=self.tags,
|
|
115
113
|
)
|
|
116
114
|
def get_corporation_overview(request):
|
|
117
|
-
corporations =
|
|
115
|
+
corporations = CorporationOwner.objects.visible_to(request.user)
|
|
118
116
|
|
|
119
117
|
if corporations is None:
|
|
120
118
|
return 403, "Permission Denied"
|
|
@@ -124,9 +122,9 @@ class LedgerAdminApiEndpoints:
|
|
|
124
122
|
for corporation in corporations:
|
|
125
123
|
# pylint: disable=broad-exception-caught
|
|
126
124
|
try:
|
|
127
|
-
corporation_dict[corporation.
|
|
128
|
-
"corporation_id": corporation.
|
|
129
|
-
"corporation_name": corporation.
|
|
125
|
+
corporation_dict[corporation.eve_corporation.corporation_id] = {
|
|
126
|
+
"corporation_id": corporation.eve_corporation.corporation_id,
|
|
127
|
+
"corporation_name": corporation.eve_corporation.corporation_name,
|
|
130
128
|
}
|
|
131
129
|
except Exception:
|
|
132
130
|
continue
|
|
@@ -142,7 +140,7 @@ class LedgerAdminApiEndpoints:
|
|
|
142
140
|
tags=self.tags,
|
|
143
141
|
)
|
|
144
142
|
def get_alliance_overview(request):
|
|
145
|
-
corporations =
|
|
143
|
+
corporations = CorporationOwner.objects.visible_to(request.user)
|
|
146
144
|
|
|
147
145
|
if corporations is None:
|
|
148
146
|
return 403, "Permission Denied"
|
|
@@ -152,9 +150,9 @@ class LedgerAdminApiEndpoints:
|
|
|
152
150
|
for corporation in corporations:
|
|
153
151
|
# pylint: disable=broad-exception-caught
|
|
154
152
|
try:
|
|
155
|
-
alliance_dict[corporation.
|
|
156
|
-
"alliance_id": corporation.
|
|
157
|
-
"alliance_name": corporation.
|
|
153
|
+
alliance_dict[corporation.eve_corporation.alliance.alliance_id] = {
|
|
154
|
+
"alliance_id": corporation.eve_corporation.alliance.alliance_id,
|
|
155
|
+
"alliance_name": corporation.eve_corporation.alliance.alliance_name,
|
|
158
156
|
}
|
|
159
157
|
except Exception:
|
|
160
158
|
continue
|
|
@@ -169,22 +167,18 @@ class LedgerAdminApiEndpoints:
|
|
|
169
167
|
tags=self.tags,
|
|
170
168
|
)
|
|
171
169
|
def get_character_dashboard(request, character_id: int):
|
|
172
|
-
perm, character =
|
|
170
|
+
perm, character = get_characterowner_or_none(request, character_id)
|
|
173
171
|
|
|
174
172
|
if not perm:
|
|
175
173
|
return 403, "Permission Denied"
|
|
176
174
|
if perm is None:
|
|
177
175
|
return 403, "Character not found"
|
|
178
176
|
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
)
|
|
182
|
-
|
|
183
|
-
characters = CharacterAudit.objects.filter(
|
|
184
|
-
eve_character__character_id__in=linked_characters_ids
|
|
177
|
+
characters = CharacterOwner.objects.filter(
|
|
178
|
+
eve_character__character_id__in=character.alt_ids
|
|
185
179
|
)
|
|
186
180
|
|
|
187
|
-
auth_characters = len(
|
|
181
|
+
auth_characters = len(character.alt_ids)
|
|
188
182
|
active_characters = characters.filter(active=True).count()
|
|
189
183
|
inactive_characters = characters.filter(active=False).count()
|
|
190
184
|
missing_characters = (
|
|
@@ -221,7 +215,7 @@ class LedgerAdminApiEndpoints:
|
|
|
221
215
|
tags=self.tags,
|
|
222
216
|
)
|
|
223
217
|
def get_corporation_dashboard(request, corporation_id: int):
|
|
224
|
-
perm, corporation =
|
|
218
|
+
perm, corporation = get_corporationowner_or_none(request, corporation_id)
|
|
225
219
|
|
|
226
220
|
if not perm:
|
|
227
221
|
return 403, "Permission Denied"
|
|
@@ -229,7 +223,7 @@ class LedgerAdminApiEndpoints:
|
|
|
229
223
|
return 403, "Corporation not found"
|
|
230
224
|
|
|
231
225
|
auth_corp = EveCorporationInfo.objects.get(
|
|
232
|
-
corporation_id=corporation.
|
|
226
|
+
corporation_id=corporation.eve_corporation.corporation_id
|
|
233
227
|
)
|
|
234
228
|
|
|
235
229
|
corp_characters = CharacterOwnership.objects.filter(
|
|
@@ -270,7 +264,7 @@ class LedgerAdminApiEndpoints:
|
|
|
270
264
|
alliance__alliance_id=alliance_id
|
|
271
265
|
)
|
|
272
266
|
corp_audit_ids = corporations.values_list(
|
|
273
|
-
"
|
|
267
|
+
"eve_corporation__corporation_id", flat=True
|
|
274
268
|
)
|
|
275
269
|
missing_corporations = all_corporations.exclude(
|
|
276
270
|
corporation_id__in=corp_audit_ids
|