wbcore 1.59.9__py2.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.
- wbcore/__init__.py +1 -0
- wbcore/admin.py +197 -0
- wbcore/apps.py +17 -0
- wbcore/cache/__init__.py +0 -0
- wbcore/cache/buttons.py +23 -0
- wbcore/cache/decorators.py +31 -0
- wbcore/cache/mixins.py +49 -0
- wbcore/cache/registry.py +98 -0
- wbcore/cache/views.py +19 -0
- wbcore/configs/__init__.py +11 -0
- wbcore/configs/configs.py +52 -0
- wbcore/configs/decorators.py +11 -0
- wbcore/configs/registry.py +35 -0
- wbcore/configs/views.py +12 -0
- wbcore/configurations/__init__.py +1 -0
- wbcore/configurations/base.py +46 -0
- wbcore/configurations/configurations/__init__.py +16 -0
- wbcore/configurations/configurations/apps.py +55 -0
- wbcore/configurations/configurations/authentication.py +44 -0
- wbcore/configurations/configurations/base.py +15 -0
- wbcore/configurations/configurations/cache.py +20 -0
- wbcore/configurations/configurations/celery.py +26 -0
- wbcore/configurations/configurations/i18nl10n.py +11 -0
- wbcore/configurations/configurations/mail.py +2 -0
- wbcore/configurations/configurations/maintenance.py +53 -0
- wbcore/configurations/configurations/media.py +22 -0
- wbcore/configurations/configurations/middleware.py +27 -0
- wbcore/configurations/configurations/network.py +19 -0
- wbcore/configurations/configurations/rest_framework.py +42 -0
- wbcore/configurations/configurations/static.py +28 -0
- wbcore/configurations/configurations/templates.py +17 -0
- wbcore/configurations/configurations/uvicorn.py +9 -0
- wbcore/configurations/configurations/wbcore.py +61 -0
- wbcore/content_type/__init__.py +0 -0
- wbcore/content_type/admin.py +8 -0
- wbcore/content_type/filters.py +20 -0
- wbcore/content_type/serializers.py +98 -0
- wbcore/content_type/utils.py +30 -0
- wbcore/content_type/viewsets.py +81 -0
- wbcore/contrib/__init__.py +0 -0
- wbcore/contrib/agenda/__init__.py +0 -0
- wbcore/contrib/agenda/admin/__init__.py +2 -0
- wbcore/contrib/agenda/admin/calendar_item.py +14 -0
- wbcore/contrib/agenda/admin/conference_room.py +19 -0
- wbcore/contrib/agenda/apps.py +6 -0
- wbcore/contrib/agenda/configurations.py +11 -0
- wbcore/contrib/agenda/factories/__init__.py +2 -0
- wbcore/contrib/agenda/factories/calendar_item.py +49 -0
- wbcore/contrib/agenda/factories/conference_room.py +20 -0
- wbcore/contrib/agenda/filters/__init__.py +2 -0
- wbcore/contrib/agenda/filters/calendar_item.py +66 -0
- wbcore/contrib/agenda/filters/conference_room.py +42 -0
- wbcore/contrib/agenda/locale/de/LC_MESSAGES/django.po +206 -0
- wbcore/contrib/agenda/locale/de/LC_MESSAGES/django.po.translated +236 -0
- wbcore/contrib/agenda/locale/en/LC_MESSAGES/django.po +200 -0
- wbcore/contrib/agenda/locale/fr/LC_MESSAGES/django.po +201 -0
- wbcore/contrib/agenda/migrations/0001_initial.py +84 -0
- wbcore/contrib/agenda/migrations/0002_initial.py +26 -0
- wbcore/contrib/agenda/migrations/0003_calendaritem_endpoint_basename.py +42 -0
- wbcore/contrib/agenda/migrations/0004_alter_calendaritem_item_type.py +17 -0
- wbcore/contrib/agenda/migrations/0005_building_and_more.py +94 -0
- wbcore/contrib/agenda/migrations/0006_calendaritem_is_deletable.py +17 -0
- wbcore/contrib/agenda/migrations/0007_alter_calendaritem_options.py +21 -0
- wbcore/contrib/agenda/migrations/0008_alter_calendaritem_item_type.py +17 -0
- wbcore/contrib/agenda/migrations/0009_alter_calendaritem_icon.py +18 -0
- wbcore/contrib/agenda/migrations/__init__.py +0 -0
- wbcore/contrib/agenda/models/__init__.py +2 -0
- wbcore/contrib/agenda/models/calendar_item.py +240 -0
- wbcore/contrib/agenda/models/conference_room.py +96 -0
- wbcore/contrib/agenda/release_notes/1_0_0.md +13 -0
- wbcore/contrib/agenda/release_notes/__init__.py +0 -0
- wbcore/contrib/agenda/serializers/__init__.py +10 -0
- wbcore/contrib/agenda/serializers/calendar_item.py +77 -0
- wbcore/contrib/agenda/serializers/conference_room.py +99 -0
- wbcore/contrib/agenda/signals.py +5 -0
- wbcore/contrib/agenda/static/agenda/markdown/documentation/building.md +11 -0
- wbcore/contrib/agenda/static/agenda/markdown/documentation/conferenceroom.md +20 -0
- wbcore/contrib/agenda/tests/__init__.py +0 -0
- wbcore/contrib/agenda/tests/conftest.py +14 -0
- wbcore/contrib/agenda/tests/signals.py +17 -0
- wbcore/contrib/agenda/tests/test_models.py +34 -0
- wbcore/contrib/agenda/tests/test_viewsets.py +172 -0
- wbcore/contrib/agenda/tests/tests.py +26 -0
- wbcore/contrib/agenda/typings.py +19 -0
- wbcore/contrib/agenda/urls.py +26 -0
- wbcore/contrib/agenda/viewsets/__init__.py +13 -0
- wbcore/contrib/agenda/viewsets/buttons/__init__.py +1 -0
- wbcore/contrib/agenda/viewsets/buttons/conference_room.py +21 -0
- wbcore/contrib/agenda/viewsets/calendar_items.py +169 -0
- wbcore/contrib/agenda/viewsets/conference_room.py +48 -0
- wbcore/contrib/agenda/viewsets/display/__init__.py +2 -0
- wbcore/contrib/agenda/viewsets/display/calendar_items.py +17 -0
- wbcore/contrib/agenda/viewsets/display/conference_room.py +42 -0
- wbcore/contrib/agenda/viewsets/endpoints/__init__.py +1 -0
- wbcore/contrib/agenda/viewsets/endpoints/calendar_items.py +19 -0
- wbcore/contrib/agenda/viewsets/menu/__init__.py +2 -0
- wbcore/contrib/agenda/viewsets/menu/calendar_items.py +12 -0
- wbcore/contrib/agenda/viewsets/menu/conference_room.py +38 -0
- wbcore/contrib/agenda/viewsets/titles/__init__.py +2 -0
- wbcore/contrib/agenda/viewsets/titles/calendar_items.py +8 -0
- wbcore/contrib/agenda/viewsets/titles/conference_room.py +25 -0
- wbcore/contrib/ai/__init__.py +0 -0
- wbcore/contrib/ai/apps.py +5 -0
- wbcore/contrib/ai/exceptions.py +40 -0
- wbcore/contrib/ai/llm/__init__.py +0 -0
- wbcore/contrib/ai/llm/config.py +166 -0
- wbcore/contrib/ai/llm/decorators.py +10 -0
- wbcore/contrib/ai/llm/mixins.py +34 -0
- wbcore/contrib/ai/llm/utils.py +69 -0
- wbcore/contrib/authentication/__init__.py +9 -0
- wbcore/contrib/authentication/admin.py +247 -0
- wbcore/contrib/authentication/apps.py +14 -0
- wbcore/contrib/authentication/authentication.py +111 -0
- wbcore/contrib/authentication/configs.py +10 -0
- wbcore/contrib/authentication/configurations.py +60 -0
- wbcore/contrib/authentication/dynamic_preferences_registry.py +26 -0
- wbcore/contrib/authentication/factories/__init__.py +10 -0
- wbcore/contrib/authentication/factories/tokens.py +15 -0
- wbcore/contrib/authentication/factories/users.py +112 -0
- wbcore/contrib/authentication/factories/users_activities.py +19 -0
- wbcore/contrib/authentication/filters.py +17 -0
- wbcore/contrib/authentication/fixtures/authentication.json +62 -0
- wbcore/contrib/authentication/locale/de/LC_MESSAGES/django.po +632 -0
- wbcore/contrib/authentication/locale/de/LC_MESSAGES/django.po.translated +634 -0
- wbcore/contrib/authentication/locale/en/LC_MESSAGES/django.po +590 -0
- wbcore/contrib/authentication/locale/fr/LC_MESSAGES/django.po +592 -0
- wbcore/contrib/authentication/management/__init__.py +14 -0
- wbcore/contrib/authentication/migrations/0001_initial_squashed.py +174 -0
- wbcore/contrib/authentication/migrations/0002_profile.py +26 -0
- wbcore/contrib/authentication/migrations/0003_alter_user_profile.py +34 -0
- wbcore/contrib/authentication/migrations/0004_token.py +51 -0
- wbcore/contrib/authentication/migrations/0005_user_external_calendar_settings.py +17 -0
- wbcore/contrib/authentication/migrations/0006_auto_20231206_1422.py +13 -0
- wbcore/contrib/authentication/migrations/__init__.py +0 -0
- wbcore/contrib/authentication/models/__init__.py +3 -0
- wbcore/contrib/authentication/models/tokens.py +140 -0
- wbcore/contrib/authentication/models/users.py +224 -0
- wbcore/contrib/authentication/models/users_activities.py +114 -0
- wbcore/contrib/authentication/release_notes/1_0_0.md +13 -0
- wbcore/contrib/authentication/release_notes/__init__.py +0 -0
- wbcore/contrib/authentication/serializers/__init__.py +14 -0
- wbcore/contrib/authentication/serializers/users.py +351 -0
- wbcore/contrib/authentication/serializers/users_activites.py +37 -0
- wbcore/contrib/authentication/tasks.py +30 -0
- wbcore/contrib/authentication/templates/activate_confirm.html +12 -0
- wbcore/contrib/authentication/templates/base.html +135 -0
- wbcore/contrib/authentication/templates/email_base_template.html +335 -0
- wbcore/contrib/authentication/templates/password_reset_done.html +13 -0
- wbcore/contrib/authentication/templates/password_reset_email.html +11 -0
- wbcore/contrib/authentication/templates/password_reset_email_html.html +43 -0
- wbcore/contrib/authentication/templates/password_reset_form.html +23 -0
- wbcore/contrib/authentication/templates/password_reset_sent.html +11 -0
- wbcore/contrib/authentication/templates/reset_password.html +15 -0
- wbcore/contrib/authentication/templates/user_registration_email.html +37 -0
- wbcore/contrib/authentication/tests/__init__.py +0 -0
- wbcore/contrib/authentication/tests/conftest.py +18 -0
- wbcore/contrib/authentication/tests/e2e/__init__.py +1 -0
- wbcore/contrib/authentication/tests/e2e/e2e_auth_utility.py +20 -0
- wbcore/contrib/authentication/tests/signals.py +18 -0
- wbcore/contrib/authentication/tests/test_configs.py +6 -0
- wbcore/contrib/authentication/tests/test_serializers.py +6 -0
- wbcore/contrib/authentication/tests/test_tasks.py +34 -0
- wbcore/contrib/authentication/tests/test_tokens.py +127 -0
- wbcore/contrib/authentication/tests/test_users.py +338 -0
- wbcore/contrib/authentication/tests/test_viewsets.py +6 -0
- wbcore/contrib/authentication/tests/tests.py +15 -0
- wbcore/contrib/authentication/urls.py +94 -0
- wbcore/contrib/authentication/utils.py +10 -0
- wbcore/contrib/authentication/viewsets/__init__.py +19 -0
- wbcore/contrib/authentication/viewsets/buttons/__init__.py +1 -0
- wbcore/contrib/authentication/viewsets/buttons/users.py +56 -0
- wbcore/contrib/authentication/viewsets/display/__init__.py +6 -0
- wbcore/contrib/authentication/viewsets/display/user_activities.py +86 -0
- wbcore/contrib/authentication/viewsets/display/users.py +73 -0
- wbcore/contrib/authentication/viewsets/endpoints/__init__.py +6 -0
- wbcore/contrib/authentication/viewsets/endpoints/user_activities.py +14 -0
- wbcore/contrib/authentication/viewsets/endpoints/users.py +18 -0
- wbcore/contrib/authentication/viewsets/menu/__init__.py +6 -0
- wbcore/contrib/authentication/viewsets/menu/user_activities.py +40 -0
- wbcore/contrib/authentication/viewsets/menu/users.py +17 -0
- wbcore/contrib/authentication/viewsets/titles/__init__.py +12 -0
- wbcore/contrib/authentication/viewsets/titles/user_activities.py +32 -0
- wbcore/contrib/authentication/viewsets/titles/users.py +27 -0
- wbcore/contrib/authentication/viewsets/user_activities.py +224 -0
- wbcore/contrib/authentication/viewsets/users.py +331 -0
- wbcore/contrib/color/admin.py +28 -0
- wbcore/contrib/color/apps.py +5 -0
- wbcore/contrib/color/enums.py +17 -0
- wbcore/contrib/color/factories.py +10 -0
- wbcore/contrib/color/fields.py +29 -0
- wbcore/contrib/color/forms.py +13 -0
- wbcore/contrib/color/migrations/0001_initial.py +33 -0
- wbcore/contrib/color/migrations/0002_alter_colorgradient_colors.py +25 -0
- wbcore/contrib/color/migrations/__init__.py +0 -0
- wbcore/contrib/color/models.py +63 -0
- wbcore/contrib/color/tests/conftest.py +10 -0
- wbcore/contrib/color/tests/test_color_models.py +61 -0
- wbcore/contrib/color/tests/test_fields.py +25 -0
- wbcore/contrib/currency/__init__.py +0 -0
- wbcore/contrib/currency/admin.py +33 -0
- wbcore/contrib/currency/apps.py +5 -0
- wbcore/contrib/currency/dynamic_preferences_registry.py +39 -0
- wbcore/contrib/currency/factories.py +40 -0
- wbcore/contrib/currency/fixtures/currency.yaml +1014 -0
- wbcore/contrib/currency/fixtures/currency_fx_rate.yaml +73585 -0
- wbcore/contrib/currency/import_export/__init__.py +0 -0
- wbcore/contrib/currency/import_export/backends/__init__.py +1 -0
- wbcore/contrib/currency/import_export/backends/fixerio/__init__.py +1 -0
- wbcore/contrib/currency/import_export/backends/fixerio/currency_fx_rates.py +69 -0
- wbcore/contrib/currency/import_export/backends/utils.py +5 -0
- wbcore/contrib/currency/import_export/handlers/__init__.py +2 -0
- wbcore/contrib/currency/import_export/handlers/currency.py +25 -0
- wbcore/contrib/currency/import_export/handlers/currency_fx_rates.py +29 -0
- wbcore/contrib/currency/import_export/parsers/__init__.py +0 -0
- wbcore/contrib/currency/import_export/parsers/fixerio/__init__.py +0 -0
- wbcore/contrib/currency/import_export/parsers/fixerio/currency_fx_rates.py +34 -0
- wbcore/contrib/currency/migrations/0001_initial.py +89 -0
- wbcore/contrib/currency/migrations/__init__.py +0 -0
- wbcore/contrib/currency/models.py +199 -0
- wbcore/contrib/currency/release_notes/1_0_0.md +13 -0
- wbcore/contrib/currency/release_notes/__init__.py +0 -0
- wbcore/contrib/currency/serializers.py +45 -0
- wbcore/contrib/currency/tests/__init__.py +0 -0
- wbcore/contrib/currency/tests/conftest.py +7 -0
- wbcore/contrib/currency/tests/test_models.py +115 -0
- wbcore/contrib/currency/tests/test_serializers.py +67 -0
- wbcore/contrib/currency/tests/test_viewsets.py +196 -0
- wbcore/contrib/currency/urls.py +20 -0
- wbcore/contrib/currency/viewsets/__init__.py +2 -0
- wbcore/contrib/currency/viewsets/buttons/__init__.py +0 -0
- wbcore/contrib/currency/viewsets/currency.py +57 -0
- wbcore/contrib/currency/viewsets/currency_fx_rates.py +33 -0
- wbcore/contrib/currency/viewsets/display/__init__.py +2 -0
- wbcore/contrib/currency/viewsets/display/currency.py +38 -0
- wbcore/contrib/currency/viewsets/display/currency_fx_rates.py +9 -0
- wbcore/contrib/currency/viewsets/endpoints/__init__.py +1 -0
- wbcore/contrib/currency/viewsets/endpoints/currency_fx_rates.py +6 -0
- wbcore/contrib/currency/viewsets/menu/__init__.py +1 -0
- wbcore/contrib/currency/viewsets/menu/currency.py +8 -0
- wbcore/contrib/currency/viewsets/preview/__init__.py +1 -0
- wbcore/contrib/currency/viewsets/preview/currency.py +10 -0
- wbcore/contrib/currency/viewsets/titles/__init__.py +2 -0
- wbcore/contrib/currency/viewsets/titles/currency.py +6 -0
- wbcore/contrib/currency/viewsets/titles/currency_fx_rates.py +8 -0
- wbcore/contrib/dataloader/__init__.py +1 -0
- wbcore/contrib/dataloader/apps.py +5 -0
- wbcore/contrib/dataloader/dataloaders/__init__.py +2 -0
- wbcore/contrib/dataloader/dataloaders/dataloaders.py +25 -0
- wbcore/contrib/dataloader/dataloaders/proxies.py +82 -0
- wbcore/contrib/dataloader/models/__init__.py +1 -0
- wbcore/contrib/dataloader/models/entities.py +30 -0
- wbcore/contrib/dataloader/models/querysets/__init__.py +1 -0
- wbcore/contrib/dataloader/models/querysets/entities.py +28 -0
- wbcore/contrib/dataloader/tests/__init__.py +0 -0
- wbcore/contrib/dataloader/tests/conftest.py +26 -0
- wbcore/contrib/dataloader/tests/test/__init__.py +0 -0
- wbcore/contrib/dataloader/tests/test/dataloaders/__init__.py +0 -0
- wbcore/contrib/dataloader/tests/test/dataloaders/dataloaders.py +18 -0
- wbcore/contrib/dataloader/tests/test/dataloaders/protocols.py +5 -0
- wbcore/contrib/dataloader/tests/test/dataloaders/proxies.py +11 -0
- wbcore/contrib/dataloader/tests/test/factories.py +13 -0
- wbcore/contrib/dataloader/tests/test/models.py +11 -0
- wbcore/contrib/dataloader/tests/test_dataloaders.py +38 -0
- wbcore/contrib/dataloader/tests/test_entities.py +13 -0
- wbcore/contrib/dataloader/utils.py +20 -0
- wbcore/contrib/directory/__init__.py +0 -0
- wbcore/contrib/directory/admin/__init__.py +14 -0
- wbcore/contrib/directory/admin/contacts.py +55 -0
- wbcore/contrib/directory/admin/entries.py +235 -0
- wbcore/contrib/directory/admin/relationships.py +73 -0
- wbcore/contrib/directory/apps.py +6 -0
- wbcore/contrib/directory/configs.py +9 -0
- wbcore/contrib/directory/configurations.py +70 -0
- wbcore/contrib/directory/dynamic_preferences_registry.py +61 -0
- wbcore/contrib/directory/factories/__init__.py +35 -0
- wbcore/contrib/directory/factories/contacts.py +71 -0
- wbcore/contrib/directory/factories/entries.py +174 -0
- wbcore/contrib/directory/factories/relationships.py +77 -0
- wbcore/contrib/directory/filters/__init__.py +22 -0
- wbcore/contrib/directory/filters/contacts.py +234 -0
- wbcore/contrib/directory/filters/entries.py +273 -0
- wbcore/contrib/directory/filters/relationships.py +90 -0
- wbcore/contrib/directory/fixtures/directory.json +3884 -0
- wbcore/contrib/directory/locale/de/LC_MESSAGES/django.po +1700 -0
- wbcore/contrib/directory/locale/de/LC_MESSAGES/django.po.translated +1779 -0
- wbcore/contrib/directory/locale/en/LC_MESSAGES/django.po +1652 -0
- wbcore/contrib/directory/locale/fr/LC_MESSAGES/django.po +1654 -0
- wbcore/contrib/directory/migrations/0001_initial.py +871 -0
- wbcore/contrib/directory/migrations/0002_auto_20230414_1553.py +42 -0
- wbcore/contrib/directory/migrations/0003_remove_entry_last_event.py +16 -0
- wbcore/contrib/directory/migrations/0004_entry_is_draft_entry.py +21 -0
- wbcore/contrib/directory/migrations/0005_entry_salutation.py +17 -0
- wbcore/contrib/directory/migrations/0006_employeremployeerelationship_position_name.py +23 -0
- wbcore/contrib/directory/migrations/0007_alter_bankingcontact_options.py +20 -0
- wbcore/contrib/directory/migrations/0008_bankingcontact_access.py +17 -0
- wbcore/contrib/directory/migrations/0009_remove_entry_external_identfier_and_more.py +22 -0
- wbcore/contrib/directory/migrations/0010_remove_addresscontact_city.py +31 -0
- wbcore/contrib/directory/migrations/0011_person_description_person_i18n.py +24 -0
- wbcore/contrib/directory/migrations/0012_alter_person_managers.py +20 -0
- wbcore/contrib/directory/migrations/0013_alter_clientmanagerrelationship_options.py +17 -0
- wbcore/contrib/directory/migrations/0014_alter_entry_relationship_managers_and_more.py +28 -0
- wbcore/contrib/directory/migrations/__init__.py +0 -0
- wbcore/contrib/directory/models/__init__.py +27 -0
- wbcore/contrib/directory/models/contacts.py +554 -0
- wbcore/contrib/directory/models/entries.py +896 -0
- wbcore/contrib/directory/models/relationships.py +624 -0
- wbcore/contrib/directory/permissions.py +6 -0
- wbcore/contrib/directory/preferences.py +11 -0
- wbcore/contrib/directory/release_notes/1_0_0.md +13 -0
- wbcore/contrib/directory/release_notes/1_0_1.md +13 -0
- wbcore/contrib/directory/release_notes/__init__.py +0 -0
- wbcore/contrib/directory/serializers/__init__.py +62 -0
- wbcore/contrib/directory/serializers/companies.py +169 -0
- wbcore/contrib/directory/serializers/contacts.py +404 -0
- wbcore/contrib/directory/serializers/entries.py +355 -0
- wbcore/contrib/directory/serializers/entry_representations.py +38 -0
- wbcore/contrib/directory/serializers/persons.py +214 -0
- wbcore/contrib/directory/serializers/relationships.py +333 -0
- wbcore/contrib/directory/signals.py +3 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/address.md +38 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/banking.md +54 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/bankingentry.md +38 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/clientmanagerrelationship.md +42 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/company.md +52 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/companytype.md +2 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/customerstatus.md +2 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/email.md +20 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/employeecompany.md +34 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/employerperson.md +43 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/person.md +61 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/position.md +2 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/relationshiptype.md +2 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/socialmedia.md +23 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/specialization.md +2 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/systememployee.md +31 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/telephone.md +23 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/telephonesearch.md +26 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/userisclient.md +14 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/userismanager.md +28 -0
- wbcore/contrib/directory/static/directory/markdown/documentation/website.md +20 -0
- wbcore/contrib/directory/tests/__init__.py +0 -0
- wbcore/contrib/directory/tests/conftest.py +62 -0
- wbcore/contrib/directory/tests/disable_signals.py +62 -0
- wbcore/contrib/directory/tests/e2e/__init__.py +7 -0
- wbcore/contrib/directory/tests/e2e/e2e_directory_utility.py +163 -0
- wbcore/contrib/directory/tests/signals.py +89 -0
- wbcore/contrib/directory/tests/test_configs.py +6 -0
- wbcore/contrib/directory/tests/test_filters.py +60 -0
- wbcore/contrib/directory/tests/test_models.py +428 -0
- wbcore/contrib/directory/tests/test_permissions.py +123 -0
- wbcore/contrib/directory/tests/test_serializers.py +217 -0
- wbcore/contrib/directory/tests/test_viewsets.py +835 -0
- wbcore/contrib/directory/typings.py +17 -0
- wbcore/contrib/directory/urls.py +135 -0
- wbcore/contrib/directory/viewsets/__init__.py +57 -0
- wbcore/contrib/directory/viewsets/buttons/__init__.py +7 -0
- wbcore/contrib/directory/viewsets/buttons/contacts.py +17 -0
- wbcore/contrib/directory/viewsets/buttons/entries.py +134 -0
- wbcore/contrib/directory/viewsets/buttons/relationships.py +64 -0
- wbcore/contrib/directory/viewsets/contacts.py +392 -0
- wbcore/contrib/directory/viewsets/display/__init__.py +36 -0
- wbcore/contrib/directory/viewsets/display/contacts.py +368 -0
- wbcore/contrib/directory/viewsets/display/entries.py +532 -0
- wbcore/contrib/directory/viewsets/display/relationships.py +292 -0
- wbcore/contrib/directory/viewsets/display/utils.py +34 -0
- wbcore/contrib/directory/viewsets/endpoints/__init__.py +22 -0
- wbcore/contrib/directory/viewsets/endpoints/contacts.py +55 -0
- wbcore/contrib/directory/viewsets/endpoints/entries.py +31 -0
- wbcore/contrib/directory/viewsets/endpoints/relationships.py +81 -0
- wbcore/contrib/directory/viewsets/entries.py +205 -0
- wbcore/contrib/directory/viewsets/menu/__init__.py +16 -0
- wbcore/contrib/directory/viewsets/menu/contacts.py +26 -0
- wbcore/contrib/directory/viewsets/menu/entries.py +62 -0
- wbcore/contrib/directory/viewsets/menu/relationships.py +32 -0
- wbcore/contrib/directory/viewsets/menu/utils.py +73 -0
- wbcore/contrib/directory/viewsets/mixins.py +12 -0
- wbcore/contrib/directory/viewsets/previews/__init__.py +2 -0
- wbcore/contrib/directory/viewsets/previews/contacts.py +19 -0
- wbcore/contrib/directory/viewsets/previews/entries.py +32 -0
- wbcore/contrib/directory/viewsets/relationships.py +256 -0
- wbcore/contrib/directory/viewsets/titles/__init__.py +30 -0
- wbcore/contrib/directory/viewsets/titles/contacts.py +123 -0
- wbcore/contrib/directory/viewsets/titles/entries.py +30 -0
- wbcore/contrib/directory/viewsets/titles/relationships.py +86 -0
- wbcore/contrib/directory/viewsets/titles/utils.py +47 -0
- wbcore/contrib/directory/viewsets/utils.py +101 -0
- wbcore/contrib/documents/__init__.py +0 -0
- wbcore/contrib/documents/admin.py +80 -0
- wbcore/contrib/documents/apps.py +6 -0
- wbcore/contrib/documents/factories.py +44 -0
- wbcore/contrib/documents/filters.py +81 -0
- wbcore/contrib/documents/fixtures/docments.json +135 -0
- wbcore/contrib/documents/locale/de/LC_MESSAGES/django.po +281 -0
- wbcore/contrib/documents/locale/de/LC_MESSAGES/django.po.translated +285 -0
- wbcore/contrib/documents/locale/en/LC_MESSAGES/django.po +271 -0
- wbcore/contrib/documents/locale/fr/LC_MESSAGES/django.po +270 -0
- wbcore/contrib/documents/migrations/0001_initial.py +189 -0
- wbcore/contrib/documents/migrations/0002_documentmodelrelationship_primary_and_more.py +22 -0
- wbcore/contrib/documents/migrations/0003_alter_documentmodelrelationship_unique_together_and_more.py +30 -0
- wbcore/contrib/documents/migrations/0004_auto_20240103_0958.py +44 -0
- wbcore/contrib/documents/migrations/0005_document_valid_from_document_valid_until_and_more.py +32 -0
- wbcore/contrib/documents/migrations/__init__.py +0 -0
- wbcore/contrib/documents/models/__init__.py +4 -0
- wbcore/contrib/documents/models/document_model_relationships.py +58 -0
- wbcore/contrib/documents/models/document_types.py +36 -0
- wbcore/contrib/documents/models/documents.py +311 -0
- wbcore/contrib/documents/models/mixins.py +10 -0
- wbcore/contrib/documents/models/shareable_links.py +91 -0
- wbcore/contrib/documents/release_notes/1_0_0.md +13 -0
- wbcore/contrib/documents/release_notes/__init__.py +0 -0
- wbcore/contrib/documents/serializers/__init__.py +12 -0
- wbcore/contrib/documents/serializers/document_model_relationships.py +31 -0
- wbcore/contrib/documents/serializers/document_types.py +41 -0
- wbcore/contrib/documents/serializers/documents.py +65 -0
- wbcore/contrib/documents/serializers/shareable_links.py +91 -0
- wbcore/contrib/documents/static/documents/markdown/documentation/document_types.md +21 -0
- wbcore/contrib/documents/static/documents/markdown/documentation/documents.md +18 -0
- wbcore/contrib/documents/static/documents/markdown/documentation/shareablelink.md +28 -0
- wbcore/contrib/documents/static/documents/markdown/documentation/shareablelinkaccess.md +20 -0
- wbcore/contrib/documents/tests/conftest.py +30 -0
- wbcore/contrib/documents/tests/test_models.py +148 -0
- wbcore/contrib/documents/urls.py +43 -0
- wbcore/contrib/documents/viewsets/__init__.py +10 -0
- wbcore/contrib/documents/viewsets/buttons/__init__.py +3 -0
- wbcore/contrib/documents/viewsets/buttons/documents.py +54 -0
- wbcore/contrib/documents/viewsets/buttons/shareable_links.py +21 -0
- wbcore/contrib/documents/viewsets/buttons/signals.py +14 -0
- wbcore/contrib/documents/viewsets/display/__init__.py +4 -0
- wbcore/contrib/documents/viewsets/display/document_model_relationships.py +19 -0
- wbcore/contrib/documents/viewsets/display/document_types.py +24 -0
- wbcore/contrib/documents/viewsets/display/documents.py +102 -0
- wbcore/contrib/documents/viewsets/display/shareable_links.py +66 -0
- wbcore/contrib/documents/viewsets/document_model_relationships.py +25 -0
- wbcore/contrib/documents/viewsets/document_types.py +38 -0
- wbcore/contrib/documents/viewsets/documents.py +108 -0
- wbcore/contrib/documents/viewsets/endpoints/__init__.py +5 -0
- wbcore/contrib/documents/viewsets/endpoints/documents.py +20 -0
- wbcore/contrib/documents/viewsets/endpoints/documents_model_relationships.py +14 -0
- wbcore/contrib/documents/viewsets/endpoints/shareable_links.py +27 -0
- wbcore/contrib/documents/viewsets/menu/__init__.py +1 -0
- wbcore/contrib/documents/viewsets/menu/documents.py +25 -0
- wbcore/contrib/documents/viewsets/previews/__init__.py +1 -0
- wbcore/contrib/documents/viewsets/previews/documents.py +10 -0
- wbcore/contrib/documents/viewsets/shareable_links.py +110 -0
- wbcore/contrib/documents/viewsets/titles/__init__.py +3 -0
- wbcore/contrib/documents/viewsets/titles/document_types.py +14 -0
- wbcore/contrib/documents/viewsets/titles/documents.py +27 -0
- wbcore/contrib/documents/viewsets/titles/shareable_links.py +14 -0
- wbcore/contrib/dynamic_preferences/__init__.py +0 -0
- wbcore/contrib/dynamic_preferences/types.py +127 -0
- wbcore/contrib/dynamic_preferences/viewsets.py +27 -0
- wbcore/contrib/example_app/__init__.py +0 -0
- wbcore/contrib/example_app/admin.py +118 -0
- wbcore/contrib/example_app/apps.py +6 -0
- wbcore/contrib/example_app/factories/__init__.py +8 -0
- wbcore/contrib/example_app/factories/event.py +27 -0
- wbcore/contrib/example_app/factories/league.py +16 -0
- wbcore/contrib/example_app/factories/match.py +26 -0
- wbcore/contrib/example_app/factories/person.py +34 -0
- wbcore/contrib/example_app/factories/role.py +10 -0
- wbcore/contrib/example_app/factories/sport.py +13 -0
- wbcore/contrib/example_app/factories/stadium.py +13 -0
- wbcore/contrib/example_app/factories/team.py +37 -0
- wbcore/contrib/example_app/filters/__init__.py +9 -0
- wbcore/contrib/example_app/filters/event.py +83 -0
- wbcore/contrib/example_app/filters/league.py +75 -0
- wbcore/contrib/example_app/filters/match.py +93 -0
- wbcore/contrib/example_app/filters/person.py +78 -0
- wbcore/contrib/example_app/filters/role.py +18 -0
- wbcore/contrib/example_app/filters/sport.py +27 -0
- wbcore/contrib/example_app/filters/stadium.py +31 -0
- wbcore/contrib/example_app/filters/team.py +78 -0
- wbcore/contrib/example_app/filters/teamresult.py +48 -0
- wbcore/contrib/example_app/fixtures/example_app.json +7425 -0
- wbcore/contrib/example_app/migrations/0001_initial.py +498 -0
- wbcore/contrib/example_app/migrations/0002_sportperson_profile.py +49 -0
- wbcore/contrib/example_app/migrations/0003_change_stadium_capacity.py +31 -0
- wbcore/contrib/example_app/migrations/0004_alter_player_transfer_value.py +21 -0
- wbcore/contrib/example_app/migrations/0005_sportperson_profile_image.py +23 -0
- wbcore/contrib/example_app/migrations/0006_league_season_period_player_is_active_and_more.py +116 -0
- wbcore/contrib/example_app/migrations/0007_alter_player_options_alter_team_options_and_more.py +40 -0
- wbcore/contrib/example_app/migrations/__init__.py +0 -0
- wbcore/contrib/example_app/models.py +978 -0
- wbcore/contrib/example_app/serializers/__init__.py +31 -0
- wbcore/contrib/example_app/serializers/league.py +112 -0
- wbcore/contrib/example_app/serializers/match_event.py +305 -0
- wbcore/contrib/example_app/serializers/person_team.py +281 -0
- wbcore/contrib/example_app/serializers/role.py +16 -0
- wbcore/contrib/example_app/serializers/season.py +54 -0
- wbcore/contrib/example_app/serializers/sport.py +38 -0
- wbcore/contrib/example_app/serializers/stadium.py +59 -0
- wbcore/contrib/example_app/serializers/teamresult.py +44 -0
- wbcore/contrib/example_app/templates/example_app/embedded_view.html +19 -0
- wbcore/contrib/example_app/tests/__init__.py +0 -0
- wbcore/contrib/example_app/tests/conftest.py +13 -0
- wbcore/contrib/example_app/tests/e2e/__init__.py +1 -0
- wbcore/contrib/example_app/tests/e2e/e2e_example_app_utility.py +52 -0
- wbcore/contrib/example_app/tests/e2e/test_league.py +70 -0
- wbcore/contrib/example_app/tests/e2e/test_person.py +68 -0
- wbcore/contrib/example_app/tests/e2e/test_teams.py +57 -0
- wbcore/contrib/example_app/tests/signals.py +7 -0
- wbcore/contrib/example_app/tests/test_displays.py +41 -0
- wbcore/contrib/example_app/tests/test_filters.py +71 -0
- wbcore/contrib/example_app/tests/test_models/test_event.py +89 -0
- wbcore/contrib/example_app/tests/test_models/test_match.py +220 -0
- wbcore/contrib/example_app/tests/test_models/test_others.py +161 -0
- wbcore/contrib/example_app/tests/test_serializers/test_league_serializer.py +34 -0
- wbcore/contrib/example_app/tests/test_serializers/test_match_serializer.py +139 -0
- wbcore/contrib/example_app/tests/test_serializers/test_role_serializer.py +13 -0
- wbcore/contrib/example_app/tests/test_serializers/test_sport_serializer.py +14 -0
- wbcore/contrib/example_app/tests/test_serializers/test_stadium_serializer.py +14 -0
- wbcore/contrib/example_app/tests/test_serializers/test_team_result_serializer.py +30 -0
- wbcore/contrib/example_app/tests/test_serializers/test_team_serializer.py +70 -0
- wbcore/contrib/example_app/tests/test_utils.py +26 -0
- wbcore/contrib/example_app/tests/test_viewsets/test_event_viewset.py +167 -0
- wbcore/contrib/example_app/tests/test_viewsets/test_league_viewset.py +84 -0
- wbcore/contrib/example_app/tests/test_viewsets/test_match_viewset.py +65 -0
- wbcore/contrib/example_app/tests/test_viewsets/test_person_viewset.py +166 -0
- wbcore/contrib/example_app/tests/test_viewsets/test_role_viewset.py +75 -0
- wbcore/contrib/example_app/tests/test_viewsets/test_sport_viewset.py +75 -0
- wbcore/contrib/example_app/tests/test_viewsets/test_stadium_viewset.py +75 -0
- wbcore/contrib/example_app/tests/test_viewsets/test_team_viewset.py +92 -0
- wbcore/contrib/example_app/tests/test_viewsets/test_teamresult_viewset.py +58 -0
- wbcore/contrib/example_app/tests/test_viewsets/test_utils_viewsets.py +124 -0
- wbcore/contrib/example_app/urls.py +82 -0
- wbcore/contrib/example_app/utils.py +21 -0
- wbcore/contrib/example_app/views.py +6 -0
- wbcore/contrib/example_app/viewsets/__init__.py +29 -0
- wbcore/contrib/example_app/viewsets/buttons/__init__.py +2 -0
- wbcore/contrib/example_app/viewsets/buttons/person.py +19 -0
- wbcore/contrib/example_app/viewsets/buttons/team.py +24 -0
- wbcore/contrib/example_app/viewsets/displays/__init__.py +23 -0
- wbcore/contrib/example_app/viewsets/displays/event.py +187 -0
- wbcore/contrib/example_app/viewsets/displays/league.py +391 -0
- wbcore/contrib/example_app/viewsets/displays/match.py +265 -0
- wbcore/contrib/example_app/viewsets/displays/person.py +252 -0
- wbcore/contrib/example_app/viewsets/displays/role.py +17 -0
- wbcore/contrib/example_app/viewsets/displays/season.py +66 -0
- wbcore/contrib/example_app/viewsets/displays/sport.py +116 -0
- wbcore/contrib/example_app/viewsets/displays/stadium.py +150 -0
- wbcore/contrib/example_app/viewsets/displays/team.py +250 -0
- wbcore/contrib/example_app/viewsets/displays/teamresult.py +31 -0
- wbcore/contrib/example_app/viewsets/endpoints/__init__.py +12 -0
- wbcore/contrib/example_app/viewsets/endpoints/endpoints.py +80 -0
- wbcore/contrib/example_app/viewsets/event.py +288 -0
- wbcore/contrib/example_app/viewsets/league.py +73 -0
- wbcore/contrib/example_app/viewsets/match.py +120 -0
- wbcore/contrib/example_app/viewsets/menu/__init__.py +1 -0
- wbcore/contrib/example_app/viewsets/menu/menus.py +103 -0
- wbcore/contrib/example_app/viewsets/menus.py +64 -0
- wbcore/contrib/example_app/viewsets/person.py +134 -0
- wbcore/contrib/example_app/viewsets/role.py +25 -0
- wbcore/contrib/example_app/viewsets/season.py +23 -0
- wbcore/contrib/example_app/viewsets/sport.py +26 -0
- wbcore/contrib/example_app/viewsets/stadium.py +31 -0
- wbcore/contrib/example_app/viewsets/team.py +69 -0
- wbcore/contrib/example_app/viewsets/teamresult.py +107 -0
- wbcore/contrib/example_app/viewsets/titles/__init__.py +9 -0
- wbcore/contrib/example_app/viewsets/titles/event.py +42 -0
- wbcore/contrib/example_app/viewsets/titles/league.py +25 -0
- wbcore/contrib/example_app/viewsets/titles/match.py +35 -0
- wbcore/contrib/example_app/viewsets/titles/person.py +36 -0
- wbcore/contrib/example_app/viewsets/titles/role.py +14 -0
- wbcore/contrib/example_app/viewsets/titles/sport.py +14 -0
- wbcore/contrib/example_app/viewsets/titles/stadium.py +14 -0
- wbcore/contrib/example_app/viewsets/titles/team.py +25 -0
- wbcore/contrib/example_app/viewsets/titles/teamresult.py +13 -0
- wbcore/contrib/geography/__init__.py +0 -0
- wbcore/contrib/geography/admin.py +30 -0
- wbcore/contrib/geography/apps.py +5 -0
- wbcore/contrib/geography/factories.py +46 -0
- wbcore/contrib/geography/fixtures/geography.json +13454 -0
- wbcore/contrib/geography/import_export/__init__.py +0 -0
- wbcore/contrib/geography/import_export/resources/__init__.py +0 -0
- wbcore/contrib/geography/import_export/resources/geography.py +11 -0
- wbcore/contrib/geography/migrations/0001_initial.py +110 -0
- wbcore/contrib/geography/migrations/0002_geography_geography_geography_tree_i739a.py +17 -0
- wbcore/contrib/geography/migrations/__init__.py +0 -0
- wbcore/contrib/geography/models.py +150 -0
- wbcore/contrib/geography/release_notes/1_0_0.md +13 -0
- wbcore/contrib/geography/release_notes/__init__.py +0 -0
- wbcore/contrib/geography/serializers.py +29 -0
- wbcore/contrib/geography/static/geography/markdown/documentation/geography.md +16 -0
- wbcore/contrib/geography/tests/__init__.py +0 -0
- wbcore/contrib/geography/tests/conftest.py +26 -0
- wbcore/contrib/geography/tests/signals.py +7 -0
- wbcore/contrib/geography/tests/test_models.py +27 -0
- wbcore/contrib/geography/tests/test_viewsets.py +100 -0
- wbcore/contrib/geography/urls.py +13 -0
- wbcore/contrib/geography/viewsets/__init__.py +1 -0
- wbcore/contrib/geography/viewsets/buttons/__init__.py +0 -0
- wbcore/contrib/geography/viewsets/display/__init__.py +1 -0
- wbcore/contrib/geography/viewsets/display/geography.py +32 -0
- wbcore/contrib/geography/viewsets/endpoints/__init__.py +0 -0
- wbcore/contrib/geography/viewsets/geography.py +58 -0
- wbcore/contrib/geography/viewsets/menu/__init__.py +1 -0
- wbcore/contrib/geography/viewsets/menu/geography.py +8 -0
- wbcore/contrib/geography/viewsets/preview/__init__.py +1 -0
- wbcore/contrib/geography/viewsets/preview/geography.py +19 -0
- wbcore/contrib/geography/viewsets/titles/__init__.py +0 -0
- wbcore/contrib/geography/viewsets/titles/geography.py +14 -0
- wbcore/contrib/gleap/__init__.py +0 -0
- wbcore/contrib/gleap/apps.py +5 -0
- wbcore/contrib/gleap/configs.py +12 -0
- wbcore/contrib/gleap/configurations.py +6 -0
- wbcore/contrib/gleap/hashes.py +13 -0
- wbcore/contrib/gleap/tests/__init__.py +0 -0
- wbcore/contrib/gleap/tests/conftest.py +1 -0
- wbcore/contrib/gleap/tests/tests.py +29 -0
- wbcore/contrib/gleap/urls.py +8 -0
- wbcore/contrib/gleap/views.py +31 -0
- wbcore/contrib/guardian/apps.py +6 -0
- wbcore/contrib/guardian/configurations.py +3 -0
- wbcore/contrib/guardian/filters.py +21 -0
- wbcore/contrib/guardian/migrations/0001_initial.py +103 -0
- wbcore/contrib/guardian/migrations/__init__.py +0 -0
- wbcore/contrib/guardian/models/__init__.py +1 -0
- wbcore/contrib/guardian/models/mixins.py +139 -0
- wbcore/contrib/guardian/models/models.py +29 -0
- wbcore/contrib/guardian/tasks.py +11 -0
- wbcore/contrib/guardian/tests/__init__.py +0 -0
- wbcore/contrib/guardian/tests/conftest.py +1 -0
- wbcore/contrib/guardian/tests/test_model_mixins.py +92 -0
- wbcore/contrib/guardian/tests/test_tasks.py +77 -0
- wbcore/contrib/guardian/tests/test_utils.py +196 -0
- wbcore/contrib/guardian/tests/test_viewsets.py +48 -0
- wbcore/contrib/guardian/urls.py +12 -0
- wbcore/contrib/guardian/utils.py +124 -0
- wbcore/contrib/guardian/viewsets/__init__.py +1 -0
- wbcore/contrib/guardian/viewsets/configs/__init__.py +4 -0
- wbcore/contrib/guardian/viewsets/configs/buttons.py +36 -0
- wbcore/contrib/guardian/viewsets/configs/displays.py +43 -0
- wbcore/contrib/guardian/viewsets/configs/endpoints.py +25 -0
- wbcore/contrib/guardian/viewsets/configs/titles.py +16 -0
- wbcore/contrib/guardian/viewsets/mixins.py +6 -0
- wbcore/contrib/guardian/viewsets/viewsets.py +141 -0
- wbcore/contrib/i18n/__init__.py +2 -0
- wbcore/contrib/i18n/buttons.py +33 -0
- wbcore/contrib/i18n/serializers/__init__.py +0 -0
- wbcore/contrib/i18n/serializers/fields.py +20 -0
- wbcore/contrib/i18n/serializers/mixins.py +13 -0
- wbcore/contrib/i18n/tests/conftest.py +11 -0
- wbcore/contrib/i18n/tests/test_viewsets.py +67 -0
- wbcore/contrib/i18n/translation.py +141 -0
- wbcore/contrib/i18n/viewsets.py +36 -0
- wbcore/contrib/icons/__init__.py +1 -0
- wbcore/contrib/icons/apps.py +5 -0
- wbcore/contrib/icons/backends/__init__.py +5 -0
- wbcore/contrib/icons/backends/default.py +375 -0
- wbcore/contrib/icons/backends/material.py +136 -0
- wbcore/contrib/icons/icons.py +167 -0
- wbcore/contrib/icons/models.py +11 -0
- wbcore/contrib/icons/serializers.py +18 -0
- wbcore/contrib/io/__init__.py +0 -0
- wbcore/contrib/io/admin.py +151 -0
- wbcore/contrib/io/apps.py +37 -0
- wbcore/contrib/io/backends/__init__.py +3 -0
- wbcore/contrib/io/backends/abstract.py +60 -0
- wbcore/contrib/io/backends/mail.py +39 -0
- wbcore/contrib/io/backends/utils.py +39 -0
- wbcore/contrib/io/configs/__init__.py +0 -0
- wbcore/contrib/io/configs/endpoints.py +13 -0
- wbcore/contrib/io/configurations/__init__.py +1 -0
- wbcore/contrib/io/configurations/base.py +7 -0
- wbcore/contrib/io/dynamic_preferences_registry.py +25 -0
- wbcore/contrib/io/enums.py +15 -0
- wbcore/contrib/io/exceptions.py +24 -0
- wbcore/contrib/io/factories.py +205 -0
- wbcore/contrib/io/fixtures/io.json +145 -0
- wbcore/contrib/io/import_export/backends/__init__.py +3 -0
- wbcore/contrib/io/import_export/backends/mail.py +51 -0
- wbcore/contrib/io/import_export/backends/sftp.py +69 -0
- wbcore/contrib/io/import_export/backends/stream.py +92 -0
- wbcore/contrib/io/import_export/parsers/__init__.py +0 -0
- wbcore/contrib/io/import_export/parsers/base_csv.py +36 -0
- wbcore/contrib/io/import_export/parsers/resources.py +50 -0
- wbcore/contrib/io/imports.py +313 -0
- wbcore/contrib/io/locale/de/LC_MESSAGES/django.po +144 -0
- wbcore/contrib/io/locale/de/LC_MESSAGES/django.po.translated +103 -0
- wbcore/contrib/io/locale/en/LC_MESSAGES/django.po +138 -0
- wbcore/contrib/io/locale/fr/LC_MESSAGES/django.po +138 -0
- wbcore/contrib/io/management/__init__.py +13 -0
- wbcore/contrib/io/migrations/0001_initial_squashed.py +319 -0
- wbcore/contrib/io/migrations/0002_importsource_creator.py +26 -0
- wbcore/contrib/io/migrations/0003_auto_20240103_1000.py +46 -0
- wbcore/contrib/io/migrations/0004_alter_importsource_status_exportsource.py +134 -0
- wbcore/contrib/io/migrations/0005_exportsource_data_alter_exportsource_query_str_and_more.py +67 -0
- wbcore/contrib/io/migrations/0006_alter_exportsource_query_params.py +20 -0
- wbcore/contrib/io/migrations/0007_alter_exportsource_query_params.py +23 -0
- wbcore/contrib/io/migrations/0008_importsource_resource_kwargs.py +18 -0
- wbcore/contrib/io/migrations/__init__.py +0 -0
- wbcore/contrib/io/mixins.py +37 -0
- wbcore/contrib/io/models.py +1037 -0
- wbcore/contrib/io/release_notes/1_0_0.md +13 -0
- wbcore/contrib/io/release_notes/__init__.py +0 -0
- wbcore/contrib/io/resources.py +176 -0
- wbcore/contrib/io/serializers.py +137 -0
- wbcore/contrib/io/signals.py +4 -0
- wbcore/contrib/io/tasks.py +27 -0
- wbcore/contrib/io/tests/__init__.py +0 -0
- wbcore/contrib/io/tests/conftest.py +42 -0
- wbcore/contrib/io/tests/test_backends.py +134 -0
- wbcore/contrib/io/tests/test_exports.py +130 -0
- wbcore/contrib/io/tests/test_imports.py +168 -0
- wbcore/contrib/io/tests/test_models.py +396 -0
- wbcore/contrib/io/tests/test_viewsets.py +271 -0
- wbcore/contrib/io/urls.py +29 -0
- wbcore/contrib/io/utils.py +44 -0
- wbcore/contrib/io/viewset_mixins.py +271 -0
- wbcore/contrib/io/viewsets.py +139 -0
- wbcore/contrib/notifications/__init__.py +0 -0
- wbcore/contrib/notifications/admin.py +63 -0
- wbcore/contrib/notifications/apps.py +43 -0
- wbcore/contrib/notifications/backends/__init__.py +0 -0
- wbcore/contrib/notifications/backends/abstract_backend.py +11 -0
- wbcore/contrib/notifications/backends/console/__init__.py +1 -0
- wbcore/contrib/notifications/backends/console/backends.py +25 -0
- wbcore/contrib/notifications/backends/firebase/__init__.py +1 -0
- wbcore/contrib/notifications/backends/firebase/backends.py +106 -0
- wbcore/contrib/notifications/configs.py +13 -0
- wbcore/contrib/notifications/configurations.py +9 -0
- wbcore/contrib/notifications/dispatch.py +90 -0
- wbcore/contrib/notifications/factories/__init__.py +0 -0
- wbcore/contrib/notifications/factories/notification_types.py +24 -0
- wbcore/contrib/notifications/factories/notifications.py +17 -0
- wbcore/contrib/notifications/factories/tokens.py +12 -0
- wbcore/contrib/notifications/locale/de/LC_MESSAGES/django.po +66 -0
- wbcore/contrib/notifications/locale/de/LC_MESSAGES/django.po.translated +63 -0
- wbcore/contrib/notifications/locale/en/LC_MESSAGES/django.po +61 -0
- wbcore/contrib/notifications/locale/fr/LC_MESSAGES/django.po +62 -0
- wbcore/contrib/notifications/migrations/0001_initial.py +116 -0
- wbcore/contrib/notifications/migrations/0002_notificationusertoken_unique_user_token_device.py +18 -0
- wbcore/contrib/notifications/migrations/0003_notificationusertoken_updated.py +17 -0
- wbcore/contrib/notifications/migrations/0004_alter_notification_body.py +17 -0
- wbcore/contrib/notifications/migrations/0005_alter_notification_endpoint.py +17 -0
- wbcore/contrib/notifications/migrations/0006_notification_created.py +25 -0
- wbcore/contrib/notifications/migrations/0007_notificationtype_resource_button_label.py +19 -0
- wbcore/contrib/notifications/migrations/0008_notificationtype_is_lock.py +18 -0
- wbcore/contrib/notifications/migrations/0009_alter_notificationtypesetting_options_and_more.py +32 -0
- wbcore/contrib/notifications/migrations/__init__.py +0 -0
- wbcore/contrib/notifications/models/__init__.py +3 -0
- wbcore/contrib/notifications/models/notification_types.py +165 -0
- wbcore/contrib/notifications/models/notifications.py +82 -0
- wbcore/contrib/notifications/models/tokens.py +46 -0
- wbcore/contrib/notifications/release_notes/1_0_0.md +13 -0
- wbcore/contrib/notifications/release_notes/__init__.py +0 -0
- wbcore/contrib/notifications/serializers/__init__.py +5 -0
- wbcore/contrib/notifications/serializers/notification_types.py +51 -0
- wbcore/contrib/notifications/serializers/notifications.py +33 -0
- wbcore/contrib/notifications/static/notifications/service-worker.js +1 -0
- wbcore/contrib/notifications/tasks.py +57 -0
- wbcore/contrib/notifications/templates/notifications/notification_template.html +43 -0
- wbcore/contrib/notifications/tests/__init__.py +0 -0
- wbcore/contrib/notifications/tests/conftest.py +47 -0
- wbcore/contrib/notifications/tests/test_backends/__init__.py +0 -0
- wbcore/contrib/notifications/tests/test_backends/test_firebase.py +79 -0
- wbcore/contrib/notifications/tests/test_configs.py +7 -0
- wbcore/contrib/notifications/tests/test_models/__init__.py +0 -0
- wbcore/contrib/notifications/tests/test_models/test_notification_types.py +85 -0
- wbcore/contrib/notifications/tests/test_models/test_notifications.py +46 -0
- wbcore/contrib/notifications/tests/test_models/test_tokens.py +30 -0
- wbcore/contrib/notifications/tests/test_serializers/__init__.py +0 -0
- wbcore/contrib/notifications/tests/test_serializers/test_notification_types.py +59 -0
- wbcore/contrib/notifications/tests/test_serializers/test_notifications.py +24 -0
- wbcore/contrib/notifications/tests/test_tasks.py +72 -0
- wbcore/contrib/notifications/tests/test_utils.py +0 -0
- wbcore/contrib/notifications/tests/test_viewsets/__init__.py +0 -0
- wbcore/contrib/notifications/tests/test_viewsets/test_notification_types.py +120 -0
- wbcore/contrib/notifications/tests/test_viewsets/test_notifications.py +143 -0
- wbcore/contrib/notifications/urls.py +27 -0
- wbcore/contrib/notifications/utils.py +27 -0
- wbcore/contrib/notifications/views.py +63 -0
- wbcore/contrib/notifications/viewsets/__init__.py +5 -0
- wbcore/contrib/notifications/viewsets/configs/notification_types.py +49 -0
- wbcore/contrib/notifications/viewsets/configs/notifications.py +91 -0
- wbcore/contrib/notifications/viewsets/menus.py +15 -0
- wbcore/contrib/notifications/viewsets/notification_types.py +51 -0
- wbcore/contrib/notifications/viewsets/notifications.py +58 -0
- wbcore/contrib/pandas/__init__.py +0 -0
- wbcore/contrib/pandas/fields.py +172 -0
- wbcore/contrib/pandas/filters.py +118 -0
- wbcore/contrib/pandas/filterset.py +28 -0
- wbcore/contrib/pandas/metadata.py +15 -0
- wbcore/contrib/pandas/tests/__init__.py +0 -0
- wbcore/contrib/pandas/tests/test_base.py +22 -0
- wbcore/contrib/pandas/tests/test_fields/__init__.py +0 -0
- wbcore/contrib/pandas/tests/test_fields/test_number_fields.py +19 -0
- wbcore/contrib/pandas/tests/test_filters/__init__.py +0 -0
- wbcore/contrib/pandas/tests/test_filters/test_pandas.py +115 -0
- wbcore/contrib/pandas/tests/test_views.py +22 -0
- wbcore/contrib/pandas/utils.py +170 -0
- wbcore/contrib/pandas/views.py +158 -0
- wbcore/contrib/tags/__init__.py +0 -0
- wbcore/contrib/tags/admin.py +17 -0
- wbcore/contrib/tags/apps.py +9 -0
- wbcore/contrib/tags/factories.py +28 -0
- wbcore/contrib/tags/filters.py +43 -0
- wbcore/contrib/tags/migrations/0001_initial.py +62 -0
- wbcore/contrib/tags/migrations/__init__.py +0 -0
- wbcore/contrib/tags/models/__init__.py +2 -0
- wbcore/contrib/tags/models/mixins.py +27 -0
- wbcore/contrib/tags/models/tags.py +107 -0
- wbcore/contrib/tags/release_notes/1_0_0.md +13 -0
- wbcore/contrib/tags/release_notes/__init__.py +0 -0
- wbcore/contrib/tags/serializers.py +90 -0
- wbcore/contrib/tags/signals.py +19 -0
- wbcore/contrib/tags/tests/__init__.py +0 -0
- wbcore/contrib/tags/tests/conftest.py +7 -0
- wbcore/contrib/tags/tests/tests.py +144 -0
- wbcore/contrib/tags/urls.py +15 -0
- wbcore/contrib/tags/viewsets/__init__.py +10 -0
- wbcore/contrib/tags/viewsets/display.py +50 -0
- wbcore/contrib/tags/viewsets/menu.py +15 -0
- wbcore/contrib/tags/viewsets/viewsets.py +58 -0
- wbcore/contrib/workflow/__init__.py +1 -0
- wbcore/contrib/workflow/admin/__init__.py +15 -0
- wbcore/contrib/workflow/admin/condition.py +9 -0
- wbcore/contrib/workflow/admin/data.py +15 -0
- wbcore/contrib/workflow/admin/display.py +9 -0
- wbcore/contrib/workflow/admin/process.py +37 -0
- wbcore/contrib/workflow/admin/step.py +92 -0
- wbcore/contrib/workflow/admin/transition.py +9 -0
- wbcore/contrib/workflow/admin/workflow.py +9 -0
- wbcore/contrib/workflow/apps.py +25 -0
- wbcore/contrib/workflow/configs.py +11 -0
- wbcore/contrib/workflow/decorators.py +25 -0
- wbcore/contrib/workflow/dispatch.py +24 -0
- wbcore/contrib/workflow/factories/__init__.py +18 -0
- wbcore/contrib/workflow/factories/condition.py +16 -0
- wbcore/contrib/workflow/factories/data.py +23 -0
- wbcore/contrib/workflow/factories/display.py +28 -0
- wbcore/contrib/workflow/factories/process.py +70 -0
- wbcore/contrib/workflow/factories/step.py +157 -0
- wbcore/contrib/workflow/factories/transition.py +27 -0
- wbcore/contrib/workflow/factories/workflow.py +20 -0
- wbcore/contrib/workflow/filters/__init__.py +24 -0
- wbcore/contrib/workflow/filters/condition.py +24 -0
- wbcore/contrib/workflow/filters/data.py +25 -0
- wbcore/contrib/workflow/filters/process.py +165 -0
- wbcore/contrib/workflow/filters/step.py +227 -0
- wbcore/contrib/workflow/filters/transition.py +42 -0
- wbcore/contrib/workflow/filters/workflow.py +44 -0
- wbcore/contrib/workflow/fixtures/workflow.json +612 -0
- wbcore/contrib/workflow/locale/de/LC_MESSAGES/django.po +1180 -0
- wbcore/contrib/workflow/locale/de/LC_MESSAGES/django.po.translated +1326 -0
- wbcore/contrib/workflow/locale/en/LC_MESSAGES/django.po +1102 -0
- wbcore/contrib/workflow/locale/fr/LC_MESSAGES/django.po +1114 -0
- wbcore/contrib/workflow/migrations/0001_initial.py +788 -0
- wbcore/contrib/workflow/migrations/0002_alter_step_step_type.py +31 -0
- wbcore/contrib/workflow/migrations/0003_alter_condition_attribute_name_and_more.py +75 -0
- wbcore/contrib/workflow/migrations/0004_alter_userstep_assignee_method.py +27 -0
- wbcore/contrib/workflow/migrations/0005_alter_userstep_assignee_method.py +17 -0
- wbcore/contrib/workflow/migrations/__init__.py +0 -0
- wbcore/contrib/workflow/models/__init__.py +19 -0
- wbcore/contrib/workflow/models/condition.py +124 -0
- wbcore/contrib/workflow/models/data.py +242 -0
- wbcore/contrib/workflow/models/display.py +34 -0
- wbcore/contrib/workflow/models/process.py +244 -0
- wbcore/contrib/workflow/models/step.py +778 -0
- wbcore/contrib/workflow/models/transition.py +71 -0
- wbcore/contrib/workflow/models/workflow.py +317 -0
- wbcore/contrib/workflow/serializers/__init__.py +37 -0
- wbcore/contrib/workflow/serializers/condition.py +65 -0
- wbcore/contrib/workflow/serializers/data.py +136 -0
- wbcore/contrib/workflow/serializers/display.py +25 -0
- wbcore/contrib/workflow/serializers/process.py +184 -0
- wbcore/contrib/workflow/serializers/signals.py +26 -0
- wbcore/contrib/workflow/serializers/step.py +365 -0
- wbcore/contrib/workflow/serializers/transition.py +81 -0
- wbcore/contrib/workflow/serializers/workflow.py +125 -0
- wbcore/contrib/workflow/sites.py +43 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/assignedprocessstep.md +33 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/condition.md +24 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/decisionstep.md +30 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/emailstep.md +45 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/finishstep.md +33 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/joinstep.md +33 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/process.md +33 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/processstep.md +51 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/scriptstep.md +33 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/splitstep.md +30 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/startstep.md +27 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/transition.md +27 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/userstep.md +42 -0
- wbcore/contrib/workflow/static/workflow/markdown/documentation/workflow.md +32 -0
- wbcore/contrib/workflow/templates/Test_Templates.txt +25 -0
- wbcore/contrib/workflow/tests/__init__.py +0 -0
- wbcore/contrib/workflow/tests/conftest.py +281 -0
- wbcore/contrib/workflow/tests/test_configs.py +6 -0
- wbcore/contrib/workflow/tests/test_dispatch.py +94 -0
- wbcore/contrib/workflow/tests/test_displays.py +42 -0
- wbcore/contrib/workflow/tests/test_filters.py +104 -0
- wbcore/contrib/workflow/tests/test_models/step/test_decision_step.py +82 -0
- wbcore/contrib/workflow/tests/test_models/step/test_email_step.py +85 -0
- wbcore/contrib/workflow/tests/test_models/step/test_finish_step.py +167 -0
- wbcore/contrib/workflow/tests/test_models/step/test_join_step.py +117 -0
- wbcore/contrib/workflow/tests/test_models/step/test_script_step.py +24 -0
- wbcore/contrib/workflow/tests/test_models/step/test_split_step.py +49 -0
- wbcore/contrib/workflow/tests/test_models/step/test_step.py +756 -0
- wbcore/contrib/workflow/tests/test_models/step/test_user_step.py +225 -0
- wbcore/contrib/workflow/tests/test_models/test_condition.py +103 -0
- wbcore/contrib/workflow/tests/test_models/test_data.py +134 -0
- wbcore/contrib/workflow/tests/test_models/test_process.py +98 -0
- wbcore/contrib/workflow/tests/test_models/test_transition.py +128 -0
- wbcore/contrib/workflow/tests/test_models/test_workflow.py +358 -0
- wbcore/contrib/workflow/tests/test_serializers.py +200 -0
- wbcore/contrib/workflow/tests/test_viewsets.py +300 -0
- wbcore/contrib/workflow/tests/test_workflow_assignees.py +236 -0
- wbcore/contrib/workflow/urls.py +67 -0
- wbcore/contrib/workflow/utils.py +13 -0
- wbcore/contrib/workflow/viewsets/__init__.py +17 -0
- wbcore/contrib/workflow/viewsets/buttons/__init__.py +1 -0
- wbcore/contrib/workflow/viewsets/buttons/step.py +68 -0
- wbcore/contrib/workflow/viewsets/condition.py +32 -0
- wbcore/contrib/workflow/viewsets/data.py +33 -0
- wbcore/contrib/workflow/viewsets/display/__init__.py +15 -0
- wbcore/contrib/workflow/viewsets/display/condition.py +51 -0
- wbcore/contrib/workflow/viewsets/display/data.py +51 -0
- wbcore/contrib/workflow/viewsets/display/process.py +186 -0
- wbcore/contrib/workflow/viewsets/display/step.py +454 -0
- wbcore/contrib/workflow/viewsets/display/transition.py +76 -0
- wbcore/contrib/workflow/viewsets/display/workflow.py +168 -0
- wbcore/contrib/workflow/viewsets/endpoints/__init__.py +5 -0
- wbcore/contrib/workflow/viewsets/endpoints/condition.py +9 -0
- wbcore/contrib/workflow/viewsets/endpoints/data.py +9 -0
- wbcore/contrib/workflow/viewsets/endpoints/process.py +11 -0
- wbcore/contrib/workflow/viewsets/endpoints/step.py +24 -0
- wbcore/contrib/workflow/viewsets/endpoints/transition.py +19 -0
- wbcore/contrib/workflow/viewsets/menu/__init__.py +15 -0
- wbcore/contrib/workflow/viewsets/menu/condition.py +19 -0
- wbcore/contrib/workflow/viewsets/menu/data.py +19 -0
- wbcore/contrib/workflow/viewsets/menu/process.py +19 -0
- wbcore/contrib/workflow/viewsets/menu/step.py +124 -0
- wbcore/contrib/workflow/viewsets/menu/transition.py +19 -0
- wbcore/contrib/workflow/viewsets/menu/workflow.py +19 -0
- wbcore/contrib/workflow/viewsets/process.py +175 -0
- wbcore/contrib/workflow/viewsets/step.py +229 -0
- wbcore/contrib/workflow/viewsets/titles/__init__.py +16 -0
- wbcore/contrib/workflow/viewsets/titles/condition.py +14 -0
- wbcore/contrib/workflow/viewsets/titles/data.py +14 -0
- wbcore/contrib/workflow/viewsets/titles/process.py +27 -0
- wbcore/contrib/workflow/viewsets/titles/step.py +102 -0
- wbcore/contrib/workflow/viewsets/titles/transition.py +14 -0
- wbcore/contrib/workflow/viewsets/titles/workflow.py +14 -0
- wbcore/contrib/workflow/viewsets/transition.py +58 -0
- wbcore/contrib/workflow/viewsets/workflow.py +37 -0
- wbcore/contrib/workflow/workflows/__init__.py +1 -0
- wbcore/contrib/workflow/workflows/assignees.py +88 -0
- wbcore/crontab/__init__.py +0 -0
- wbcore/crontab/serializers.py +24 -0
- wbcore/crontab/viewsets.py +10 -0
- wbcore/dispatch.py +56 -0
- wbcore/docs/__init__.py +23 -0
- wbcore/docs/orderable.md +29 -0
- wbcore/docs/reparent.md +13 -0
- wbcore/dynamic_preferences_registry.py +131 -0
- wbcore/enums.py +50 -0
- wbcore/filters/__init__.py +21 -0
- wbcore/filters/backends.py +19 -0
- wbcore/filters/defaults.py +70 -0
- wbcore/filters/fields/__init__.py +15 -0
- wbcore/filters/fields/booleans.py +7 -0
- wbcore/filters/fields/choices.py +60 -0
- wbcore/filters/fields/content_type.py +45 -0
- wbcore/filters/fields/datetime.py +117 -0
- wbcore/filters/fields/models.py +123 -0
- wbcore/filters/fields/multiple_lookups.py +20 -0
- wbcore/filters/fields/numbers.py +48 -0
- wbcore/filters/fields/text.py +7 -0
- wbcore/filters/filterset.py +250 -0
- wbcore/filters/lookups.py +41 -0
- wbcore/filters/mixins.py +111 -0
- wbcore/filters/utils.py +21 -0
- wbcore/forms.py +125 -0
- wbcore/frontend.py +23 -0
- wbcore/frontend_user_configuration.py +96 -0
- wbcore/fsm/__init__.py +0 -0
- wbcore/fsm/markdown_extensions.py +31 -0
- wbcore/fsm/mixins.py +128 -0
- wbcore/locale/de/LC_MESSAGES/django.po +1252 -0
- wbcore/locale/de/LC_MESSAGES/django.po.translated +1580 -0
- wbcore/locale/en/LC_MESSAGES/django.po +1234 -0
- wbcore/locale/fr/LC_MESSAGES/django.po +1235 -0
- wbcore/management/__init__.py +88 -0
- wbcore/management/commands/__init__.py +0 -0
- wbcore/management/commands/bootstrap.py +18 -0
- wbcore/management/commands/clean_obsolete_object.py +21 -0
- wbcore/management/commands/handle_release_notes.py +54 -0
- wbcore/markdown/__init__.py +1 -0
- wbcore/markdown/admin.py +9 -0
- wbcore/markdown/dynamic_preferences_registry.py +16 -0
- wbcore/markdown/models.py +41 -0
- wbcore/markdown/template.py +38 -0
- wbcore/markdown/utils.py +37 -0
- wbcore/markdown/views.py +50 -0
- wbcore/menus/__init__.py +2 -0
- wbcore/menus/menus.py +96 -0
- wbcore/menus/registry.py +28 -0
- wbcore/menus/views.py +41 -0
- wbcore/messages.py +60 -0
- wbcore/metadata/__init__.py +0 -0
- wbcore/metadata/configs/__init__.py +0 -0
- wbcore/metadata/configs/base.py +86 -0
- wbcore/metadata/configs/buttons/__init__.py +4 -0
- wbcore/metadata/configs/buttons/bases.py +89 -0
- wbcore/metadata/configs/buttons/buttons.py +138 -0
- wbcore/metadata/configs/buttons/enums.py +68 -0
- wbcore/metadata/configs/buttons/metadata.py +8 -0
- wbcore/metadata/configs/buttons/view_config.py +145 -0
- wbcore/metadata/configs/display/__init__.py +4 -0
- wbcore/metadata/configs/display/configs.py +16 -0
- wbcore/metadata/configs/display/display.py +234 -0
- wbcore/metadata/configs/display/formatting.py +47 -0
- wbcore/metadata/configs/display/instance_display/__init__.py +15 -0
- wbcore/metadata/configs/display/instance_display/display.py +40 -0
- wbcore/metadata/configs/display/instance_display/enums.py +7 -0
- wbcore/metadata/configs/display/instance_display/layouts/__init__.py +3 -0
- wbcore/metadata/configs/display/instance_display/layouts/inlines.py +58 -0
- wbcore/metadata/configs/display/instance_display/layouts/layouts.py +77 -0
- wbcore/metadata/configs/display/instance_display/layouts/sections.py +43 -0
- wbcore/metadata/configs/display/instance_display/operators.py +22 -0
- wbcore/metadata/configs/display/instance_display/pages.py +40 -0
- wbcore/metadata/configs/display/instance_display/shortcuts.py +81 -0
- wbcore/metadata/configs/display/instance_display/signals.py +3 -0
- wbcore/metadata/configs/display/instance_display/styles.py +42 -0
- wbcore/metadata/configs/display/instance_display/utils.py +74 -0
- wbcore/metadata/configs/display/list_display.py +290 -0
- wbcore/metadata/configs/display/models.py +26 -0
- wbcore/metadata/configs/display/view_config.py +85 -0
- wbcore/metadata/configs/display/views.py +48 -0
- wbcore/metadata/configs/display/windows.py +28 -0
- wbcore/metadata/configs/documentations.py +11 -0
- wbcore/metadata/configs/endpoints.py +189 -0
- wbcore/metadata/configs/fields.py +22 -0
- wbcore/metadata/configs/filter_fields.py +41 -0
- wbcore/metadata/configs/identifiers.py +27 -0
- wbcore/metadata/configs/ordering_fields.py +24 -0
- wbcore/metadata/configs/paginations.py +11 -0
- wbcore/metadata/configs/preview.py +41 -0
- wbcore/metadata/configs/primary_keys.py +9 -0
- wbcore/metadata/configs/search_fields.py +9 -0
- wbcore/metadata/configs/titles.py +48 -0
- wbcore/metadata/configs/window_types.py +13 -0
- wbcore/metadata/exceptions.py +0 -0
- wbcore/metadata/metadata.py +34 -0
- wbcore/metadata/mixins.py +106 -0
- wbcore/metadata/tests/__init__.py +0 -0
- wbcore/metadata/tests/test_buttons.py +165 -0
- wbcore/metadata/utils.py +4 -0
- wbcore/migrations/0001_initial_squashed_squashed_0010_preset_appliedpreset.py +398 -0
- wbcore/migrations/0011_genericmodel.py +22 -0
- wbcore/migrations/0012_delete_notification.py +15 -0
- wbcore/migrations/0013_delete_colorgradient.py +14 -0
- wbcore/migrations/0014_biguserobjectpermission_system.py +44 -0
- wbcore/migrations/__init__.py +0 -0
- wbcore/models/__init__.py +6 -0
- wbcore/models/base.py +184 -0
- wbcore/models/fields.py +29 -0
- wbcore/models/orderable.py +6 -0
- wbcore/pagination.py +64 -0
- wbcore/pandas/__init__.py +53 -0
- wbcore/pandas/fields.py +25 -0
- wbcore/pandas/filterset.py +9 -0
- wbcore/pandas/utils.py +25 -0
- wbcore/pandas/views.py +9 -0
- wbcore/permissions/__init__.py +0 -0
- wbcore/permissions/backend.py +36 -0
- wbcore/permissions/mixins.py +72 -0
- wbcore/permissions/permissions.py +51 -0
- wbcore/permissions/registry.py +33 -0
- wbcore/permissions/shortcuts.py +38 -0
- wbcore/permissions/utils.py +26 -0
- wbcore/release_notes/__init__.py +0 -0
- wbcore/release_notes/admin.py +30 -0
- wbcore/release_notes/buttons.py +26 -0
- wbcore/release_notes/display.py +52 -0
- wbcore/release_notes/filters.py +36 -0
- wbcore/release_notes/models.py +66 -0
- wbcore/release_notes/serializers.py +12 -0
- wbcore/release_notes/utils.py +14 -0
- wbcore/release_notes/viewsets.py +52 -0
- wbcore/reversion/__init__.py +0 -0
- wbcore/reversion/filters.py +39 -0
- wbcore/reversion/serializers.py +81 -0
- wbcore/reversion/viewsets/__init__.py +6 -0
- wbcore/reversion/viewsets/buttons.py +95 -0
- wbcore/reversion/viewsets/displays.py +45 -0
- wbcore/reversion/viewsets/endpoints.py +30 -0
- wbcore/reversion/viewsets/titles.py +19 -0
- wbcore/reversion/viewsets/viewsets.py +112 -0
- wbcore/routers.py +63 -0
- wbcore/search/__init__.py +62 -0
- wbcore/serializers/__init__.py +68 -0
- wbcore/serializers/fields/__init__.py +59 -0
- wbcore/serializers/fields/boolean.py +51 -0
- wbcore/serializers/fields/choice.py +60 -0
- wbcore/serializers/fields/datetime.py +178 -0
- wbcore/serializers/fields/fields.py +193 -0
- wbcore/serializers/fields/file.py +20 -0
- wbcore/serializers/fields/fsm.py +20 -0
- wbcore/serializers/fields/json.py +56 -0
- wbcore/serializers/fields/list.py +104 -0
- wbcore/serializers/fields/mixins.py +196 -0
- wbcore/serializers/fields/number.py +94 -0
- wbcore/serializers/fields/other.py +34 -0
- wbcore/serializers/fields/primary_key.py +22 -0
- wbcore/serializers/fields/related.py +150 -0
- wbcore/serializers/fields/text.py +141 -0
- wbcore/serializers/fields/types.py +46 -0
- wbcore/serializers/mixins.py +24 -0
- wbcore/serializers/serializers.py +425 -0
- wbcore/serializers/utils.py +143 -0
- wbcore/shares/__init__.py +1 -0
- wbcore/shares/config.py +64 -0
- wbcore/shares/decorator.py +13 -0
- wbcore/shares/signals.py +3 -0
- wbcore/shares/sites.py +29 -0
- wbcore/shares/views.py +25 -0
- wbcore/signals/__init__.py +7 -0
- wbcore/signals/clone.py +4 -0
- wbcore/signals/filters.py +3 -0
- wbcore/signals/instance_buttons.py +5 -0
- wbcore/signals/merge.py +4 -0
- wbcore/signals/models.py +4 -0
- wbcore/signals/permissions.py +3 -0
- wbcore/signals/serializers.py +5 -0
- wbcore/tasks.py +87 -0
- wbcore/template.py +29 -0
- wbcore/templates/errors/404.html +134 -0
- wbcore/templates/errors/500.html +138 -0
- wbcore/templates/errors/503.html +132 -0
- wbcore/templates/errors/custom.html +132 -0
- wbcore/templates/forms.py +0 -0
- wbcore/templates/notifications/email_template.html +43 -0
- wbcore/templates/reversion/__init__.py +0 -0
- wbcore/templates/reversion/compare_detail.html +19 -0
- wbcore/templates/wbcore/admin/change_list.html +8 -0
- wbcore/templates/wbcore/admin/csv_form.html +15 -0
- wbcore/templates/wbcore/dynamic_color_array.html +29 -0
- wbcore/templates/wbcore/email_base_template.html +335 -0
- wbcore/templates/wbcore/email_notification_template.html +10 -0
- wbcore/templates/wbcore/frontend.html +51 -0
- wbcore/test/__init__.py +30 -0
- wbcore/test/e2e_helpers_methods/e2e_checks.py +127 -0
- wbcore/test/e2e_helpers_methods/e2e_helper_methods.py +397 -0
- wbcore/test/mixins.py +660 -0
- wbcore/test/signals.py +6 -0
- wbcore/test/tests.py +129 -0
- wbcore/test/utils.py +227 -0
- wbcore/tests/__init__.py +0 -0
- wbcore/tests/conftest.py +55 -0
- wbcore/tests/e2e/__init__.py +0 -0
- wbcore/tests/e2e/test_e2e.py +25 -0
- wbcore/tests/models.py +6 -0
- wbcore/tests/test_cache/__init__.py +0 -0
- wbcore/tests/test_cache/test_decorators.py +28 -0
- wbcore/tests/test_cache/test_mixins.py +30 -0
- wbcore/tests/test_cache/test_registry.py +58 -0
- wbcore/tests/test_configs.py +58 -0
- wbcore/tests/test_enums.py +56 -0
- wbcore/tests/test_fields/__init__.py +0 -0
- wbcore/tests/test_fields/test_boolean_fields.py +49 -0
- wbcore/tests/test_fields/test_choice_fields.py +57 -0
- wbcore/tests/test_fields/test_datetime_fields.py +152 -0
- wbcore/tests/test_fields/test_fields.py +24 -0
- wbcore/tests/test_fields/test_file_fields.py +52 -0
- wbcore/tests/test_fields/test_json_fields.py +28 -0
- wbcore/tests/test_fields/test_list_fields.py +27 -0
- wbcore/tests/test_fields/test_mixins.py +112 -0
- wbcore/tests/test_fields/test_number_fields.py +166 -0
- wbcore/tests/test_fields/test_other_fields.py +60 -0
- wbcore/tests/test_fields/test_primary_key_fields.py +52 -0
- wbcore/tests/test_fields/test_related.py +81 -0
- wbcore/tests/test_fields/test_text_fields.py +118 -0
- wbcore/tests/test_filters/__init__.py +0 -0
- wbcore/tests/test_filters/test_mixins.py +109 -0
- wbcore/tests/test_list_display.py +29 -0
- wbcore/tests/test_models/__init__.py +0 -0
- wbcore/tests/test_models/test_fields.py +26 -0
- wbcore/tests/test_models/test_mixins.py +32 -0
- wbcore/tests/test_new_display/__init__.py +0 -0
- wbcore/tests/test_new_display/test_inlines.py +13 -0
- wbcore/tests/test_new_display/test_layouts.py +15 -0
- wbcore/tests/test_new_display/test_operators.py +16 -0
- wbcore/tests/test_new_display/test_pages.py +8 -0
- wbcore/tests/test_new_display/test_sections.py +0 -0
- wbcore/tests/test_new_display/test_shortcuts.py +38 -0
- wbcore/tests/test_new_display/test_utils.py +49 -0
- wbcore/tests/test_pagination.py +32 -0
- wbcore/tests/test_permissions/test_backend.py +29 -0
- wbcore/tests/test_serializers/__init__.py +0 -0
- wbcore/tests/test_serializers/test_fields.py +141 -0
- wbcore/tests/test_serializers/test_mixins.py +54 -0
- wbcore/tests/test_serializers/test_related.py +78 -0
- wbcore/tests/test_something.py +39 -0
- wbcore/tests/test_utils/__init__.py +0 -0
- wbcore/tests/test_utils/test_date.py +50 -0
- wbcore/tests/test_utils/test_date_builder.py +124 -0
- wbcore/tests/test_utils/test_primary.py +80 -0
- wbcore/tests/test_utils/test_signals.py +40 -0
- wbcore/tests/test_viewsets.py +21 -0
- wbcore/urls.py +117 -0
- wbcore/utils/__init__.py +13 -0
- wbcore/utils/cache.py +8 -0
- wbcore/utils/date.py +237 -0
- wbcore/utils/date_builder/__init__.py +18 -0
- wbcore/utils/date_builder/components.py +42 -0
- wbcore/utils/date_builder/offsets.py +27 -0
- wbcore/utils/deprecations.py +11 -0
- wbcore/utils/enum.py +23 -0
- wbcore/utils/figures.py +286 -0
- wbcore/utils/html.py +8 -0
- wbcore/utils/importlib.py +13 -0
- wbcore/utils/itertools.py +40 -0
- wbcore/utils/models.py +293 -0
- wbcore/utils/numbers.py +69 -0
- wbcore/utils/prettytable.py +35 -0
- wbcore/utils/print.py +29 -0
- wbcore/utils/renderers.py +13 -0
- wbcore/utils/reportlab.py +7 -0
- wbcore/utils/rrules.py +82 -0
- wbcore/utils/serializers.py +9 -0
- wbcore/utils/settings.py +5 -0
- wbcore/utils/signals.py +36 -0
- wbcore/utils/string_loader.py +42 -0
- wbcore/utils/strings.py +77 -0
- wbcore/utils/urls.py +70 -0
- wbcore/utils/views.py +207 -0
- wbcore/views.py +26 -0
- wbcore/viewsets/__init__.py +12 -0
- wbcore/viewsets/encoders.py +18 -0
- wbcore/viewsets/generics.py +5 -0
- wbcore/viewsets/mixins.py +295 -0
- wbcore/viewsets/utils.py +27 -0
- wbcore/viewsets/viewsets.py +202 -0
- wbcore/workers.py +8 -0
- wbcore-1.59.9.dist-info/METADATA +65 -0
- wbcore-1.59.9.dist-info/RECORD +1239 -0
- wbcore-1.59.9.dist-info/WHEEL +5 -0
|
@@ -0,0 +1,1239 @@
|
|
|
1
|
+
wbcore/__init__.py,sha256=J-j-u0itpEFT6irdmWmixQqYMadNl1X91TxUmoiLHMI,22
|
|
2
|
+
wbcore/admin.py,sha256=ES5cf6mX9dLeihMYnv9Ol6YTuD2zyexv3qr3nHEL5OI,6771
|
|
3
|
+
wbcore/apps.py,sha256=GbEGrRyFv6TSfo-rkvdxMnPU9J6RFpqhqU4ibE7rARw,482
|
|
4
|
+
wbcore/dispatch.py,sha256=QiLhugCp5FJzOWkiKittene8bVbYbPJbb-NDS7Y4Suo,2053
|
|
5
|
+
wbcore/dynamic_preferences_registry.py,sha256=maplz8DukWht052A6DwB0s-4ZfghtNIE2u9r2i8vhuo,3877
|
|
6
|
+
wbcore/enums.py,sha256=DUJzxDPvDBrjg_B1rqhKA6WMQ8bQfRcITMljG3yYKcQ,938
|
|
7
|
+
wbcore/forms.py,sha256=aUUT9XxZGSvpr3ZyhTv6AeydRayn7Jy1besKWybQa0A,3633
|
|
8
|
+
wbcore/frontend.py,sha256=TA2duYbgzRLrjmU2ImSGgJmGTu_J_w0n1Bh_b7s94uQ,856
|
|
9
|
+
wbcore/frontend_user_configuration.py,sha256=P4SQk9ALZLBs6gNTqGBkEB6Sr-w4RWDdcLUvgp9T1qo,3193
|
|
10
|
+
wbcore/messages.py,sha256=fSfELjXkastcd3gFiWGJrGI_dl0BzsKg8UfaApXf5nM,1967
|
|
11
|
+
wbcore/pagination.py,sha256=lOW1BzJwlATzfOHo4BJA23avrg_39-LCL6mHctsAoBk,2282
|
|
12
|
+
wbcore/routers.py,sha256=gLbQc8MRHuJax88FBDejtt3_MavE9KkwZMsQvAqJj0I,2174
|
|
13
|
+
wbcore/tasks.py,sha256=PXjAuJ3vQ8ESwucaLi0rfSAQneB5d3b5AODD0XC0naE,4102
|
|
14
|
+
wbcore/template.py,sha256=Vrr6G3dmzxgO15Ogh-UEa5HTouR587Ep6PBxHVGwNoU,1093
|
|
15
|
+
wbcore/urls.py,sha256=kis0kfmc4TnqHDxY9Kmck_W3jnotMdzDxMeuT2uXukY,4740
|
|
16
|
+
wbcore/views.py,sha256=6vfq4DfKmCJD27T_XvKdigMBy9NbpzcaBO3gYcq60tI,950
|
|
17
|
+
wbcore/workers.py,sha256=26PB4nhSay9LJ3DAj_G3gWZKX3ctu9WT4Ll0lC38L3k,351
|
|
18
|
+
wbcore/cache/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
|
+
wbcore/cache/buttons.py,sha256=gyEizLHyWeWAiNxZ4fQ16pxiCy1sxfwIht928HBrOf8,970
|
|
20
|
+
wbcore/cache/decorators.py,sha256=pfXnncxysUuKHFDoMX-oiPQ_eZfmi3i4qSrb0HDg3bA,1120
|
|
21
|
+
wbcore/cache/mixins.py,sha256=N8lCZEHh9u_RiKhRjqBwRTw8OJTMdcydM8BfND_q8Q0,1722
|
|
22
|
+
wbcore/cache/registry.py,sha256=9KwSVegT-FNYzaEV6uw4WYa4LJ8mkEI2QCgvwyLvA6Q,3680
|
|
23
|
+
wbcore/cache/views.py,sha256=Ehwglwlug2Z4285BPvTE5623sCAlHrDD3np1oZkw_gc,630
|
|
24
|
+
wbcore/configs/__init__.py,sha256=icE1l0NI-0vGErpIyCUx48l-Fys4OCJxK0Wi781Wdek,238
|
|
25
|
+
wbcore/configs/configs.py,sha256=QDgKfNUMFfVYXBvmh_yk_2oFikmAspiSKxuhjePAyd0,1882
|
|
26
|
+
wbcore/configs/decorators.py,sha256=5kdwENMaiw6rzjqTj-D7ezx-9gj2FVg1P5NsFrO-fnc,387
|
|
27
|
+
wbcore/configs/registry.py,sha256=mBOETXfDdGPW7tpXRTyvvEzn4IvAWtPegN13-ml6Jy4,1287
|
|
28
|
+
wbcore/configs/views.py,sha256=GCf8jPF0hAgQ8oIle4jJMliWlWoXj4yBPsZAe7MZS1s,366
|
|
29
|
+
wbcore/configurations/__init__.py,sha256=H-vQTsjryzvwQ7FN4kGLywoGFV_VrPkbuNV4VRx1WHU,68
|
|
30
|
+
wbcore/configurations/base.py,sha256=woxAbHfAU6vMHu6oZp5eDJB97j-PjUVkA6UdItXNc8Q,1550
|
|
31
|
+
wbcore/configurations/configurations/__init__.py,sha256=mni_MM6rOHK1YwOC9i4xlrITumInHJuKCngc4k-pdpo,574
|
|
32
|
+
wbcore/configurations/configurations/apps.py,sha256=paEcFC0JNpJ50Ma-_0dAO3wumgGnaGIAEhErlNqc_jY,1591
|
|
33
|
+
wbcore/configurations/configurations/authentication.py,sha256=wRNQDvCOf2lPuOsxf7NugisC-fXYWD1lMyKKu2rZrDk,2115
|
|
34
|
+
wbcore/configurations/configurations/base.py,sha256=ETX3-jiJe1sJev9jcXUgUNkrOPANmWx9-ogob6sNZd0,453
|
|
35
|
+
wbcore/configurations/configurations/cache.py,sha256=UwqbhVQIouCK9SdXX4-SeaTR4HGQhHna7j38L6uGPXk,709
|
|
36
|
+
wbcore/configurations/configurations/celery.py,sha256=rIlfOFwTYv1z5AmEEyFu6hcIK0Jhs6UjWtVimprEl7U,1042
|
|
37
|
+
wbcore/configurations/configurations/i18nl10n.py,sha256=EnzF4OFjUyxU6xQVvXC0oRogg-97GyTjNNh1i98s-bg,460
|
|
38
|
+
wbcore/configurations/configurations/mail.py,sha256=Ky8oUzSCqLTaRsWzPbJs2agu8M5YxnqEIiWvxFOu6fQ,89
|
|
39
|
+
wbcore/configurations/configurations/maintenance.py,sha256=vNLy64RoCY-s665pCWQwaeI-dZ0VHN_6UrNVZwJ5Tfc,2593
|
|
40
|
+
wbcore/configurations/configurations/media.py,sha256=hRIDbB0ngL8ihq1myK1C2G5n7DVmrrM-s9XMua4QUng,753
|
|
41
|
+
wbcore/configurations/configurations/middleware.py,sha256=ITqS3loS2ottWLBLKDnaPuhZmXwyqlwrcpZ8IRD0000,1328
|
|
42
|
+
wbcore/configurations/configurations/network.py,sha256=seM15W9V1_id6X2Vxff_8mpQODB2v-hs8q5QFo2zeWM,822
|
|
43
|
+
wbcore/configurations/configurations/rest_framework.py,sha256=u1c0cup3KnSr5CuWjxPYbnLxpTjIqeQ00zw9ADAx9hQ,2084
|
|
44
|
+
wbcore/configurations/configurations/static.py,sha256=-OZXJvFpSlPAYspkeq97PL1VdiV1nh5_BYPO0jGmiVk,690
|
|
45
|
+
wbcore/configurations/configurations/templates.py,sha256=pCghzXBQXn-lN_1nmjnvCnAz1LaF0lLWZ34AhDz2QW0,575
|
|
46
|
+
wbcore/configurations/configurations/uvicorn.py,sha256=ZkklzlFwvMnOljNvr-Pl9QSGAGlNw-dYQjSiGx2GC-Y,368
|
|
47
|
+
wbcore/configurations/configurations/wbcore.py,sha256=t11pM-AFCMaFrQQxH9Kz58lVSYQO7ZeQCrkBZTlxAys,3023
|
|
48
|
+
wbcore/content_type/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
49
|
+
wbcore/content_type/admin.py,sha256=0o4M2ARAxW4qZ_lA8hIootT69GRyOih_-K_A5ouNkUw,255
|
|
50
|
+
wbcore/content_type/filters.py,sha256=s7GNjnesOcvNIKKa_w1XsTs21Rocp8Mo1tvVdVdbq3Q,629
|
|
51
|
+
wbcore/content_type/serializers.py,sha256=M6wPv0ibuicgHspDHYvrm3ztl7H3yJZlS1GI3URyfyw,3755
|
|
52
|
+
wbcore/content_type/utils.py,sha256=HRvOh5Qcts6u6N4DE39oJnyJp2H2gPNMuXkth7K61Ps,865
|
|
53
|
+
wbcore/content_type/viewsets.py,sha256=wI9WQyiYe_TBrg6wPWjPnQMphAjK9MVsRli6T_gBjrw,2940
|
|
54
|
+
wbcore/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
55
|
+
wbcore/contrib/agenda/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
56
|
+
wbcore/contrib/agenda/apps.py,sha256=cDiiTECHI2F9DVEl0ypFRly3BORNlGVwcQ-YGZxfDJw,159
|
|
57
|
+
wbcore/contrib/agenda/configurations.py,sha256=NJWqx7wugxX_jrAHjGN7OHNRn9FarW32MtAQKIn4gjk,419
|
|
58
|
+
wbcore/contrib/agenda/signals.py,sha256=7k0JKlJFlhGOnTL-ePudscTAvVvcIrnBSlboWjPd9nU,187
|
|
59
|
+
wbcore/contrib/agenda/typings.py,sha256=XffgNMb5gVt-gkln40ZaYzlauc_Rab49tz9PQRMUuJ0,474
|
|
60
|
+
wbcore/contrib/agenda/urls.py,sha256=Q7p4cqORW_mM6LrAn-ABNSBPciAd6PDpo4ffe2Lu-Eg,1006
|
|
61
|
+
wbcore/contrib/agenda/admin/__init__.py,sha256=p4dBh0EWaa65Ulr7mQg5wbKpUiZ3eJ30c-YwsfdCGVM,124
|
|
62
|
+
wbcore/contrib/agenda/admin/calendar_item.py,sha256=Uil7ifzO8dDSnGpKjK7GXq-jI3_QjJ8J51sMzcdHEoo,438
|
|
63
|
+
wbcore/contrib/agenda/admin/conference_room.py,sha256=U7JWv562VLbQt3EKGN82Hv5empODQKm1Ai16UET-wK4,616
|
|
64
|
+
wbcore/contrib/agenda/factories/__init__.py,sha256=HtWkd-1NBWASbKiUGoRij02KaWKv5YfRQ013XNKGrwM,115
|
|
65
|
+
wbcore/contrib/agenda/factories/calendar_item.py,sha256=B94TrO5D2tN4wKUxW7eWc9s0sHKZdmHf0TKnBHF04a8,1408
|
|
66
|
+
wbcore/contrib/agenda/factories/conference_room.py,sha256=XOuWhzkKIHp3ZXdMrKIpXoxoWilo7LJY5g9QPOQn0WY,525
|
|
67
|
+
wbcore/contrib/agenda/filters/__init__.py,sha256=RtsTRlUrL4dP0pA86ws_4u1-bqoU_YslwbnuJhe8NGU,145
|
|
68
|
+
wbcore/contrib/agenda/filters/calendar_item.py,sha256=c0v0W8aTNUvG0a87kMwYc9LWRcyckWQUlcPGnIhCNmU,2697
|
|
69
|
+
wbcore/contrib/agenda/filters/conference_room.py,sha256=vr5MMUdr768x9KpxZXCIZjqTXNelZaJjft2DJOLW7DY,1371
|
|
70
|
+
wbcore/contrib/agenda/locale/de/LC_MESSAGES/django.po,sha256=9rgx-Ms1SSLKt3wThZ2dvw4QltjddKmEZrURMjJCG3I,5303
|
|
71
|
+
wbcore/contrib/agenda/locale/de/LC_MESSAGES/django.po.translated,sha256=2l9jKXWDRo-82AnJwOQQBrNP-2Lcmss1UcRqNeMHipg,6334
|
|
72
|
+
wbcore/contrib/agenda/locale/en/LC_MESSAGES/django.po,sha256=oT2jXEm3igUD4fWvRf9BNM5Rac-_FonVjGyK3Y6yKlg,4929
|
|
73
|
+
wbcore/contrib/agenda/locale/fr/LC_MESSAGES/django.po,sha256=UrY0OX-erx9y1hxbEiAJkGh_0--rxev1e_6Ph49fAZ4,5030
|
|
74
|
+
wbcore/contrib/agenda/migrations/0001_initial.py,sha256=U2XBESw3umDVzJwEt7G7U_Wesvdjb5_2zXnZT6n84Vk,3290
|
|
75
|
+
wbcore/contrib/agenda/migrations/0002_initial.py,sha256=Xlt0LAHeo8Z5JysnuLvU5r3mrq30hts7bdYCNEYZ9g8,708
|
|
76
|
+
wbcore/contrib/agenda/migrations/0003_calendaritem_endpoint_basename.py,sha256=YDsn5yoZwQb2Z9Jyc6bwz7BDH5I8og3YS6CDC_hQ0xM,1302
|
|
77
|
+
wbcore/contrib/agenda/migrations/0004_alter_calendaritem_item_type.py,sha256=li1N_tJLAOyCkGa3SGOdM6GBr3XJs1utbD03qGFNhMc,458
|
|
78
|
+
wbcore/contrib/agenda/migrations/0005_building_and_more.py,sha256=ZNovzkmO3EqIgdmzDgRhd2XOmhrwfvvW8PVDzDqDiJc,3393
|
|
79
|
+
wbcore/contrib/agenda/migrations/0006_calendaritem_is_deletable.py,sha256=l21aDk8-mnxxuhgXxEZHygDCd4gNLFFiGlxvUUjE8-w,424
|
|
80
|
+
wbcore/contrib/agenda/migrations/0007_alter_calendaritem_options.py,sha256=uXHoHQ7s7L4phlEWVY1A_CdTlx8x2eMiVRSVha6XU1M,645
|
|
81
|
+
wbcore/contrib/agenda/migrations/0008_alter_calendaritem_item_type.py,sha256=zEwKK5VVsHLaf2NXKasY6k4JbmgcGa7vv7-hVXF72Uk,446
|
|
82
|
+
wbcore/contrib/agenda/migrations/0009_alter_calendaritem_icon.py,sha256=ZG8U5f6ghM9NKAuIgM1XmTZlHrSiHVi1YJirqFhppAQ,491
|
|
83
|
+
wbcore/contrib/agenda/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
84
|
+
wbcore/contrib/agenda/models/__init__.py,sha256=IfSBX-jDEegu6HvZ6a2EvFkUV6tYu1v29FxlxXbpTHE,94
|
|
85
|
+
wbcore/contrib/agenda/models/calendar_item.py,sha256=oq5w5ee9d5W1u1OqWy8Y724TSAzyFzZctJGYKWByZvk,8340
|
|
86
|
+
wbcore/contrib/agenda/models/conference_room.py,sha256=24Q9ylP0hev1UgiiqCn46YAodjcP6BtWmXbTeYjFoJs,2795
|
|
87
|
+
wbcore/contrib/agenda/release_notes/1_0_0.md,sha256=R4dJ7bqiHOQrKseVY0O7_untC6-1I9BBYy8qJYIdYLw,162
|
|
88
|
+
wbcore/contrib/agenda/release_notes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
89
|
+
wbcore/contrib/agenda/serializers/__init__.py,sha256=CD2G1X_UUFegj3vznA1bswKxMWlKEo2zVgEx95-NC9c,285
|
|
90
|
+
wbcore/contrib/agenda/serializers/calendar_item.py,sha256=IVGzPSPIE_yltyYhCuIcwpxfUzd_A6-evHWULGbDerI,2609
|
|
91
|
+
wbcore/contrib/agenda/serializers/conference_room.py,sha256=0y1p5zPAshzZlr-w9SRr8ByBOxpMM3ByLCvkT39V7ec,3265
|
|
92
|
+
wbcore/contrib/agenda/static/agenda/markdown/documentation/building.md,sha256=_agt5xFih62lR412YTGW8RCEPpv-Tb9ORkJLm2wM-c0,646
|
|
93
|
+
wbcore/contrib/agenda/static/agenda/markdown/documentation/conferenceroom.md,sha256=zT7H6mQ2m-aFXYjKnIfz9dcoN1wdddZJZRqWWgWpr8E,1082
|
|
94
|
+
wbcore/contrib/agenda/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
95
|
+
wbcore/contrib/agenda/tests/conftest.py,sha256=qOG2iZW6w3ikA0Gl6EQOH2O6noCDx-mbTmHM2CnxdKE,480
|
|
96
|
+
wbcore/contrib/agenda/tests/signals.py,sha256=ji_kPdFr3XcwWeJ39Q5hM9SGdJF1zjRnWIJD-9rnFxs,520
|
|
97
|
+
wbcore/contrib/agenda/tests/test_models.py,sha256=fFFYAtP-kBq2Lsm9EaJSOa3rU3Gdlmm8pZPGNpQS2d8,1617
|
|
98
|
+
wbcore/contrib/agenda/tests/test_viewsets.py,sha256=URXoB5MovOj6-JeyLW53zkBNlIlxvoUFqXJwpszSK8M,7567
|
|
99
|
+
wbcore/contrib/agenda/tests/tests.py,sha256=ZPlf6f3zpbWZPrtzKdfhowCtP5MkROn-Yrun-zSDwDA,866
|
|
100
|
+
wbcore/contrib/agenda/viewsets/__init__.py,sha256=n7RcUSSx_6X7Ql49FnYZ3dhzi2vldRqjAJ6mPOxl_nQ,337
|
|
101
|
+
wbcore/contrib/agenda/viewsets/calendar_items.py,sha256=vh5DQuCS-0uppIl-1NPFEKL2OHlbdh1D863VvX6cihE,6401
|
|
102
|
+
wbcore/contrib/agenda/viewsets/conference_room.py,sha256=42GsOBn1nwn_diqg_0mCp6wOrpBGPo41gnW2noZMIE0,1846
|
|
103
|
+
wbcore/contrib/agenda/viewsets/buttons/__init__.py,sha256=WpwfEo6gniHLqA_wa0zw3XuSOgJ0xJd3IcJbwWC35tQ,50
|
|
104
|
+
wbcore/contrib/agenda/viewsets/buttons/conference_room.py,sha256=DrPd841vFVIUymHDMnshWl4hNOTE37t_XT0GIVr3K3c,714
|
|
105
|
+
wbcore/contrib/agenda/viewsets/display/__init__.py,sha256=4Nbi9BVGGND0z3d7luEtwJbPcDAVvh7L4c-rIagkkFM,116
|
|
106
|
+
wbcore/contrib/agenda/viewsets/display/calendar_items.py,sha256=2p1ti-llKpxN2k1g7Rq8wfDgVQYWrpJJjpgY7pF23FM,507
|
|
107
|
+
wbcore/contrib/agenda/viewsets/display/conference_room.py,sha256=8z-NZ4tb-o5PPLP3Ou9ajs5QJcg8pORvZRMCSOHKQUw,1538
|
|
108
|
+
wbcore/contrib/agenda/viewsets/endpoints/__init__.py,sha256=jGfh-M2tuizBUZ1-uqHpYFZ8UQvSh84suSfGP9L7N-k,55
|
|
109
|
+
wbcore/contrib/agenda/viewsets/endpoints/calendar_items.py,sha256=VeSsIf0YsT16mV1I7dEkzjoBkOrLiNiCcRxAHa795jc,754
|
|
110
|
+
wbcore/contrib/agenda/viewsets/menu/__init__.py,sha256=HxdPpwcboVVcwhHLdmFjHcqVofQnFFbDV2pl_adMHME,119
|
|
111
|
+
wbcore/contrib/agenda/viewsets/menu/calendar_items.py,sha256=1wSws5NoTXWeUSky8pycZzeulStV3yKcZOo8L49f3UE,407
|
|
112
|
+
wbcore/contrib/agenda/viewsets/menu/conference_room.py,sha256=qqflU705L5TYmdekdx-CRtqzDx5Qo7o4d6YztQlLAX8,1246
|
|
113
|
+
wbcore/contrib/agenda/viewsets/titles/__init__.py,sha256=0nDvBCHl5ZAOxvDFqjhpycqzOZRKkZ6b4OKD55RjtHM,128
|
|
114
|
+
wbcore/contrib/agenda/viewsets/titles/calendar_items.py,sha256=5zDx2uH5UKJh-zop3ZAqNR15utAKtEt7xm_wnmM8ws8,219
|
|
115
|
+
wbcore/contrib/agenda/viewsets/titles/conference_room.py,sha256=NHbfJ3jkvJ5knaLgp8QNtRndbbovJ351ejWs-dLpvro,629
|
|
116
|
+
wbcore/contrib/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
117
|
+
wbcore/contrib/ai/apps.py,sha256=nx-0Jd-jUjko4h1tBC1FXwuJI3KK9rdOkI7TNYKzWU8,97
|
|
118
|
+
wbcore/contrib/ai/exceptions.py,sha256=NEJ7syViGXoPM9ZQ8hBfGH0Q75e52hq3foKAnHXvLOQ,1075
|
|
119
|
+
wbcore/contrib/ai/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
120
|
+
wbcore/contrib/ai/llm/config.py,sha256=WYCSX73KUwqmRBzrFa0cSkAA06MMrBpzGBV1Y2Nzox4,5576
|
|
121
|
+
wbcore/contrib/ai/llm/decorators.py,sha256=u3AWbQjbCCeIp-X1aezhqeZJd8chbI1OhGnm8mDy5cY,198
|
|
122
|
+
wbcore/contrib/ai/llm/mixins.py,sha256=qbuRLaRCmLjdMC7r877RKYsMpE6AurYEGEzSPYYE9y4,1037
|
|
123
|
+
wbcore/contrib/ai/llm/utils.py,sha256=B6iNt54x9ehN084wj-UvLUVEYrTPANSaITtl0AT3WJc,2503
|
|
124
|
+
wbcore/contrib/authentication/__init__.py,sha256=eQ3KJSYPoO4xc867RdcdayxaxZ8TLGLHMA3kY5H6UMg,313
|
|
125
|
+
wbcore/contrib/authentication/admin.py,sha256=vWYNMx9woqROm_dOwraYqLKunUv0d46SOrY5J9pcqsI,9052
|
|
126
|
+
wbcore/contrib/authentication/apps.py,sha256=5ak0rx5M2P7r4Mq1XnP4-arEHIUq6CAYoBjzOU7lPs4,411
|
|
127
|
+
wbcore/contrib/authentication/authentication.py,sha256=DLWOsGlk88uegMnepEIRrc91B-HKePUuoo1_-IewMac,4311
|
|
128
|
+
wbcore/contrib/authentication/configs.py,sha256=Z3M2X6xzWhwJEEvHym6d9khriSdgyTmimbkxi7KAGuk,358
|
|
129
|
+
wbcore/contrib/authentication/configurations.py,sha256=N-631Y0kfJzacLcs926uom7SaoJC7RvhA7nsR5NV_hs,2362
|
|
130
|
+
wbcore/contrib/authentication/dynamic_preferences_registry.py,sha256=oWCqvR-lzduzOrwh5DlsTBfP-9NyjCERNpKLjfnkNzo,982
|
|
131
|
+
wbcore/contrib/authentication/filters.py,sha256=UEIbxpFhjc2G8DFq0r0hWEoAASoNZDmBI3PZvPD8-Q8,424
|
|
132
|
+
wbcore/contrib/authentication/tasks.py,sha256=shKDGGyKN6_Ubqvl5I5mW9NZ1cBFO-yIiyvKpDIb778,1260
|
|
133
|
+
wbcore/contrib/authentication/urls.py,sha256=OUeLXEwuF6yS-oXeBpkC5aCviEC-nPbM3CSOcNpEImE,3974
|
|
134
|
+
wbcore/contrib/authentication/utils.py,sha256=jmOZtY_z6oW_r6npGPH00IbPcUjWZ1NchodMgcHXEbs,341
|
|
135
|
+
wbcore/contrib/authentication/factories/__init__.py,sha256=hpYaVz57Ko4lh6rZex31HuO-pyJ-LmegzGH26hSrIqo,243
|
|
136
|
+
wbcore/contrib/authentication/factories/tokens.py,sha256=CX3HI3ynapYdknmiMrF7WikmF-LWMqKmYMMlLJgUDrI,414
|
|
137
|
+
wbcore/contrib/authentication/factories/users.py,sha256=GyVe5ud-BFvZonkwQprcllUzAm56GokYp_Bl8R9nwBs,3764
|
|
138
|
+
wbcore/contrib/authentication/factories/users_activities.py,sha256=tbcpZyXokn6fDZ6fuZkGtYL7Jtm0aWIiZBY63urx_iw,480
|
|
139
|
+
wbcore/contrib/authentication/fixtures/authentication.json,sha256=9sRKzduD4j9-NYP-Ou9Lw1hIB3DWIPwAfO-T_JFebvI,1848
|
|
140
|
+
wbcore/contrib/authentication/locale/de/LC_MESSAGES/django.po,sha256=f0xhk8zpD3ir1RaVGCoYaGwNpYJAiwhZgoZJ_cfxL90,20901
|
|
141
|
+
wbcore/contrib/authentication/locale/de/LC_MESSAGES/django.po.translated,sha256=sUgcHLFQktpSZbK3l-KXLvn0MhjeKvwJn0mpydaI1Lo,22002
|
|
142
|
+
wbcore/contrib/authentication/locale/en/LC_MESSAGES/django.po,sha256=otLSffRpW2GmSG3rbC2-MhuXCSCWtoqxLsI2rME2zYA,16067
|
|
143
|
+
wbcore/contrib/authentication/locale/fr/LC_MESSAGES/django.po,sha256=ZWD3KlC926dM9oP8-xw4U9lQC6oDofpyXw4u_lo50I4,16171
|
|
144
|
+
wbcore/contrib/authentication/management/__init__.py,sha256=-Y__XzIfe-QL1sNWr4SSLaoSHX0YRl7SLPQqCGKWZVE,635
|
|
145
|
+
wbcore/contrib/authentication/migrations/0001_initial_squashed.py,sha256=5cdHxjaM3hyqlxYMadCU5wXn4P-jqkgwQj8JqvvaIJE,6663
|
|
146
|
+
wbcore/contrib/authentication/migrations/0002_profile.py,sha256=QfkebUHcRFdjrkTEucXoU1YqDo-ygh1X2AWIhG8pH0I,692
|
|
147
|
+
wbcore/contrib/authentication/migrations/0003_alter_user_profile.py,sha256=WW8PWalmz89KZ-BZHXdaJ-nskjik3SowoRtIkKtbeT4,974
|
|
148
|
+
wbcore/contrib/authentication/migrations/0004_token.py,sha256=rD5Tpby4iUb4Vje-IejhJW1PWIZTmMPW4QGtIQtYpos,1971
|
|
149
|
+
wbcore/contrib/authentication/migrations/0005_user_external_calendar_settings.py,sha256=BegFBiGbtbNWoGGATBbfHn9GcDkmdqKhLdf8VeLvwYc,386
|
|
150
|
+
wbcore/contrib/authentication/migrations/0006_auto_20231206_1422.py,sha256=jetLcssq55i2KKc8TV1YGHgv3aLB1d63GfC3q7G8cmQ,259
|
|
151
|
+
wbcore/contrib/authentication/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
152
|
+
wbcore/contrib/authentication/models/__init__.py,sha256=GhtPxWgZEUcbFQt2ArdB6OPjyEYav3F_XddlKnht0_w,125
|
|
153
|
+
wbcore/contrib/authentication/models/tokens.py,sha256=QGNz4Tejy6KqxOnrIGIGC4PPbKsP-CbGQ3AXNsN-zW4,5415
|
|
154
|
+
wbcore/contrib/authentication/models/users.py,sha256=ShQjVpEKHCgwH1IajrYXMlDef13xinf2WqfV68aQf-A,7826
|
|
155
|
+
wbcore/contrib/authentication/models/users_activities.py,sha256=uyr1FLNNCC9YDBN7hKnVGDjc9DmonY-BjPqtrUUA8o8,4289
|
|
156
|
+
wbcore/contrib/authentication/release_notes/1_0_0.md,sha256=pZ6rgeR5mTB3vabX3eaEJXMSfs7m4a1SEbYdpAmXwyI,170
|
|
157
|
+
wbcore/contrib/authentication/release_notes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
158
|
+
wbcore/contrib/authentication/serializers/__init__.py,sha256=pY77syWz4VtH1RlGMv5-0nlnneDshvNDmk-N52lBXIc,455
|
|
159
|
+
wbcore/contrib/authentication/serializers/users.py,sha256=3IXYsYYyPLz7UoHqfD7GuQMAv6BYr2DRDsPUnukjVDA,14347
|
|
160
|
+
wbcore/contrib/authentication/serializers/users_activites.py,sha256=BvhwOZg7izLDnCD5RN1fdaBoEJGQDA8nUacTj192krA,1234
|
|
161
|
+
wbcore/contrib/authentication/templates/activate_confirm.html,sha256=DP-3FfdLEPYu8svucdSe68DGjJyJNeVENcbZvf6hPtE,283
|
|
162
|
+
wbcore/contrib/authentication/templates/base.html,sha256=_fe2DDLtBphRbiyUUMhRS3qqQC3fudqN0afT2o06Z_E,3747
|
|
163
|
+
wbcore/contrib/authentication/templates/email_base_template.html,sha256=2KchGtEg_2oMbju2wQESLkBqgL8MZ8_vzbgoSVGaETQ,13300
|
|
164
|
+
wbcore/contrib/authentication/templates/password_reset_done.html,sha256=kNKOmffD4XzBi5Ndr4fRiUwETW54pQJ7MU2Oug8uABQ,376
|
|
165
|
+
wbcore/contrib/authentication/templates/password_reset_email.html,sha256=zeCMn6LuJWK4-00ERVGGVY3FLQwZoDeINNAJaF1G5vM,538
|
|
166
|
+
wbcore/contrib/authentication/templates/password_reset_email_html.html,sha256=ktWowCM9hQr-i74Nf1CS3w-eEFVn49QdjiNFjx-datc,1724
|
|
167
|
+
wbcore/contrib/authentication/templates/password_reset_form.html,sha256=NfoyMxXbWvg85cufpvnKWtElItvCqqRb4J7h8V470NA,727
|
|
168
|
+
wbcore/contrib/authentication/templates/password_reset_sent.html,sha256=h0JGXpSScuzPANX3JTtySRD80oKzA1L8yIdXJBpgWTI,558
|
|
169
|
+
wbcore/contrib/authentication/templates/reset_password.html,sha256=GxDtxRsz2k6Y-qGA0sjATgxsNuVBRye5ZjbuYANXDns,470
|
|
170
|
+
wbcore/contrib/authentication/templates/user_registration_email.html,sha256=_hmZPdfuBT3v-Dg0SRK2jYbv0Sx84j1OZUREZoLflDU,1327
|
|
171
|
+
wbcore/contrib/authentication/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
172
|
+
wbcore/contrib/authentication/tests/conftest.py,sha256=_Ib93zJ2oygjPME_v38N8v_2P0geVGgvLLJgQ7JDQ7Y,485
|
|
173
|
+
wbcore/contrib/authentication/tests/signals.py,sha256=3Vrb_z4u_XMI-pfcGAbO4aBwhUdu7MPfPZDe07iqiAg,571
|
|
174
|
+
wbcore/contrib/authentication/tests/test_configs.py,sha256=AJ2LmSgenIjG_9dp0bzPZj6mMG7hB_B3x2imXL7nFOY,217
|
|
175
|
+
wbcore/contrib/authentication/tests/test_serializers.py,sha256=yiF6x5IRbWKwndlZkVlFwQd-zCebAJVbqmfDbpI87dE,79
|
|
176
|
+
wbcore/contrib/authentication/tests/test_tasks.py,sha256=yiqt4U2yxh2uslu0l-nA2Zldoh-yjG5LYeg2jUWKu00,1355
|
|
177
|
+
wbcore/contrib/authentication/tests/test_tokens.py,sha256=MtLW2BDElaWFpiZIRmDc_MTLd3TedjJcjOR6G1DYNbE,6129
|
|
178
|
+
wbcore/contrib/authentication/tests/test_users.py,sha256=weBPLrDCEZtA9YTbNBNmQTBce3uIpT34k5Ow9B09Tbc,13024
|
|
179
|
+
wbcore/contrib/authentication/tests/test_viewsets.py,sha256=H_7mK6j3SoxM_MZioXUeWptAyxELZwutncuAniTFrH8,77
|
|
180
|
+
wbcore/contrib/authentication/tests/tests.py,sha256=kQnXhFqBaYOj1vsew70bDoNM2UF1sG92wecHROoHbkk,432
|
|
181
|
+
wbcore/contrib/authentication/tests/e2e/__init__.py,sha256=0QhVTsjMlR1BTGlRiaO5io2G6-T313zd6JNb1TesmyU,55
|
|
182
|
+
wbcore/contrib/authentication/tests/e2e/e2e_auth_utility.py,sha256=DNCAiaLGVZ964oGmdp1CYc1oU2AEDZdA_W1kLZv5Zn0,564
|
|
183
|
+
wbcore/contrib/authentication/viewsets/__init__.py,sha256=Kvt5ikqkg0_4P-DXvRBOpfQcUMHwDIE7vyGpGQ5uSbg,479
|
|
184
|
+
wbcore/contrib/authentication/viewsets/user_activities.py,sha256=aJVtAnVYdbhc8iPOIMHcVripDJ2s0lU1lTQWSX_IyrI,8324
|
|
185
|
+
wbcore/contrib/authentication/viewsets/users.py,sha256=8oX0EY126o5FWiiBUHiUHbk2g1bEUTR9naWbQlLiUVs,12442
|
|
186
|
+
wbcore/contrib/authentication/viewsets/buttons/__init__.py,sha256=H2DLTgMil7mRmj-NtnBfJa-DrbMxT4lv8GbZNhe_76w,66
|
|
187
|
+
wbcore/contrib/authentication/viewsets/buttons/users.py,sha256=OHtuM4M-Um85-bXXnKNA0PZQEZVB51BCiXsoOjfFLIs,2359
|
|
188
|
+
wbcore/contrib/authentication/viewsets/display/__init__.py,sha256=iOKARtlVqcaMB80CZqFpCPbyjz4bKaOdjYqEmGYlIBs,222
|
|
189
|
+
wbcore/contrib/authentication/viewsets/display/user_activities.py,sha256=Vc4nu8p3k_6WyDOqZWIXaYQxrMdqijc-6Ghx5n1cM04,3461
|
|
190
|
+
wbcore/contrib/authentication/viewsets/display/users.py,sha256=b9RYAtbw5X1nlkD3z8je_J51-zpzoQY1NLhHdwskosg,2890
|
|
191
|
+
wbcore/contrib/authentication/viewsets/endpoints/__init__.py,sha256=i0M7ZkmEoTJLMLA3JR3gvF_1X3YLoz4YYZzZyvNJupc,234
|
|
192
|
+
wbcore/contrib/authentication/viewsets/endpoints/user_activities.py,sha256=JUd61RhdjDmF-e-zg1TZ9AO9pXdbL1JUYcZ-9FXGKR8,354
|
|
193
|
+
wbcore/contrib/authentication/viewsets/endpoints/users.py,sha256=BCOTgGWbKN8uHAAk_A0MaQfwume_aejUaI4j3uZmiPI,623
|
|
194
|
+
wbcore/contrib/authentication/viewsets/menu/__init__.py,sha256=doXz5TNc2pWhG9YuZTZVsvQYzx8g8jOj1U4pbu_qrh0,162
|
|
195
|
+
wbcore/contrib/authentication/viewsets/menu/user_activities.py,sha256=NQR4bn86yPrmXFg1QgWLKk_mtU8lcGwyRajfzZAQ-qE,1204
|
|
196
|
+
wbcore/contrib/authentication/viewsets/menu/users.py,sha256=kkwG6YAzlqbnaHJGbb-Y2OMumyzbTaAteS1Xc5kYT4Y,589
|
|
197
|
+
wbcore/contrib/authentication/viewsets/titles/__init__.py,sha256=31xz3WVIyV_uCYd1dsqfPPwhnRdEzW86IhFGFrAXLOM,330
|
|
198
|
+
wbcore/contrib/authentication/viewsets/titles/user_activities.py,sha256=KJFjqxSuOvatIJ0WJMMJTEFFAYltPp_WSkmOjAIsyxQ,979
|
|
199
|
+
wbcore/contrib/authentication/viewsets/titles/users.py,sha256=s8J5kViaPNnuCbrMdCT2Xs2hRZwb-uTH0sXM0qszp9Q,716
|
|
200
|
+
wbcore/contrib/color/admin.py,sha256=wtvcldVeqGWvDTcLsW1FZwssyFNn5HfL-2v0rJEk9LU,959
|
|
201
|
+
wbcore/contrib/color/apps.py,sha256=OdA_ws68vvKlCrcxrryrT07fDzarKKDkz-1KsUG8eHk,103
|
|
202
|
+
wbcore/contrib/color/enums.py,sha256=yj1SqcQZdrcmXsY6VB1NT5d7aTZgkd2DamJt7jxiKAw,500
|
|
203
|
+
wbcore/contrib/color/factories.py,sha256=1J-0QnyhYFIpkD29aC5n8cPIY6SUdZti0Ra9GwgkX70,314
|
|
204
|
+
wbcore/contrib/color/fields.py,sha256=dPT1LyOyNujlgEKfh34pTPZS0nLQDOe63JhVrfH7KB0,806
|
|
205
|
+
wbcore/contrib/color/forms.py,sha256=FZxi4RzNnWYGJm9e9oYecxOSYAenB7XB9SEVW1AcIn4,435
|
|
206
|
+
wbcore/contrib/color/models.py,sha256=N-KqjNo1PPWQt82lhkmNOrd-5uJmHQwIT_FPAzDe55Y,1994
|
|
207
|
+
wbcore/contrib/color/migrations/0001_initial.py,sha256=DvS0kImKDdSeIN7sPVEiy2Bbuv4GvEES9I196KyKWS0,1082
|
|
208
|
+
wbcore/contrib/color/migrations/0002_alter_colorgradient_colors.py,sha256=s5Lub5wPnJwfDw8GRCq0zd5DU5STpBt9GVDxVHxKLBM,705
|
|
209
|
+
wbcore/contrib/color/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
210
|
+
wbcore/contrib/color/tests/conftest.py,sha256=b5t60JOOYt-gMYIMzVWnqPWbxH_5UYW9UGQAl-KfUmc,364
|
|
211
|
+
wbcore/contrib/color/tests/test_color_models.py,sha256=QtUxPob50odTImEjlEoPOkj8uO66S8eQbfl1fw8eB8M,2506
|
|
212
|
+
wbcore/contrib/color/tests/test_fields.py,sha256=bcbEOR5bQSU20UqVZJzslh3WXCmDJT4LzxqZPnuisVk,686
|
|
213
|
+
wbcore/contrib/currency/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
214
|
+
wbcore/contrib/currency/admin.py,sha256=40IS_gMyIXjYYUka35Olk3aYI3cLLb5NXpC_rWdsnb8,1081
|
|
215
|
+
wbcore/contrib/currency/apps.py,sha256=10grJHw9gyBLDfbVJ-gGGUFcU5AgTaH7uBFr8j0bshE,106
|
|
216
|
+
wbcore/contrib/currency/dynamic_preferences_registry.py,sha256=1f4tPjAf1OYyp4FPUZ9WCdh8cEcM_1OD_y5GWRCa6NA,1074
|
|
217
|
+
wbcore/contrib/currency/factories.py,sha256=DTFzyceTewYzj3IFyI3roJCwF1VWKZOZKLcsJg829mA,1211
|
|
218
|
+
wbcore/contrib/currency/models.py,sha256=Qxa_d-6oNL4VtCoAgXVvXqe9nO1IOeAb3f2aCnYASJg,6961
|
|
219
|
+
wbcore/contrib/currency/serializers.py,sha256=v9y5ldcxe9cm2rabwEI9yHIj2Sp0QKnVAs9eX6F60fY,1448
|
|
220
|
+
wbcore/contrib/currency/urls.py,sha256=kyM6mM-1wQtsdc58r7MsSgAGhVS-4U-xLPeC3-XPNys,685
|
|
221
|
+
wbcore/contrib/currency/fixtures/currency.yaml,sha256=lB0DyTrfSt96fym_fc8_13qsWIk09h-6jfVnjHIhVQs,17225
|
|
222
|
+
wbcore/contrib/currency/fixtures/currency_fx_rate.yaml,sha256=tzkBO-Vc-RYFCzbT2ys9MOQxhB0zBvseHaPjVerg3qY,1452692
|
|
223
|
+
wbcore/contrib/currency/import_export/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
224
|
+
wbcore/contrib/currency/import_export/backends/__init__.py,sha256=ebh7oqdM8U0t_u4_v7dZcCQrtNXIJbFkhBZLmi7EUeo,23
|
|
225
|
+
wbcore/contrib/currency/import_export/backends/utils.py,sha256=HV9KzSivUrNda83RQ9aHmwU3XikvE9qWklS1DA-ISg8,216
|
|
226
|
+
wbcore/contrib/currency/import_export/backends/fixerio/__init__.py,sha256=0cTmsR5hevUyrqvrwIgH3l-tk7xm3XXDm56qlZX_AYo,43
|
|
227
|
+
wbcore/contrib/currency/import_export/backends/fixerio/currency_fx_rates.py,sha256=SbZZnvtt6Uy_o7RIg0sENWWShpCe0NUb8_M5HFdJfE8,2987
|
|
228
|
+
wbcore/contrib/currency/import_export/handlers/__init__.py,sha256=jlqc5rPD-cxofp2XkJMUcDJiGpBYjwfGZ8x3xpqsGt8,104
|
|
229
|
+
wbcore/contrib/currency/import_export/handlers/currency.py,sha256=GQaPjT2L1vPZbfNJLi2Vw2UoVbFjVHQGiO1c1to3Cf4,838
|
|
230
|
+
wbcore/contrib/currency/import_export/handlers/currency_fx_rates.py,sha256=LKRkOgbStOHd0k7ZrbjsgfOpFdS7-CrjbjnVClW_qqk,1203
|
|
231
|
+
wbcore/contrib/currency/import_export/parsers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
232
|
+
wbcore/contrib/currency/import_export/parsers/fixerio/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
233
|
+
wbcore/contrib/currency/import_export/parsers/fixerio/currency_fx_rates.py,sha256=pGO36qKVqdhwWjJpuQqa-UO0i_UWIVtQF3-jAUvoyV4,1242
|
|
234
|
+
wbcore/contrib/currency/migrations/0001_initial.py,sha256=v1bMEVABzqAHn6D9jdBzbj4j5wTrUYDc7_fONdEQ7Jw,3063
|
|
235
|
+
wbcore/contrib/currency/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
236
|
+
wbcore/contrib/currency/release_notes/1_0_0.md,sha256=Hm_Jt3S7nv30s3-Hl_ie0xkHgrRsZLuiBpOXkIDj2UE,164
|
|
237
|
+
wbcore/contrib/currency/release_notes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
238
|
+
wbcore/contrib/currency/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
239
|
+
wbcore/contrib/currency/tests/conftest.py,sha256=WVsiPAsvPDwt9SsCSrUjM-jg5uc02Nqor8xQFltoZm8,200
|
|
240
|
+
wbcore/contrib/currency/tests/test_models.py,sha256=BWvcy8de3hXqo1-SlilVS4L5RHEZ9g3cPCyfZk-WFiI,4720
|
|
241
|
+
wbcore/contrib/currency/tests/test_serializers.py,sha256=5AIH6thmG76bjBTuVFnB4_izfDrXZIsDZ7xsOvXi4lw,2928
|
|
242
|
+
wbcore/contrib/currency/tests/test_viewsets.py,sha256=aGuKRY9UE-1JIDBWQMWbhZUAg1Envh7JNa4AgnMhqTw,7198
|
|
243
|
+
wbcore/contrib/currency/viewsets/__init__.py,sha256=uPP607FDQ8gdiZq898RfRAmhMJ-zQgzBrejbc9kVf_E,141
|
|
244
|
+
wbcore/contrib/currency/viewsets/currency.py,sha256=LcSZponETU62YkRPLk5Omj5Lu6GHMLnxblPaGKfN6HQ,1929
|
|
245
|
+
wbcore/contrib/currency/viewsets/currency_fx_rates.py,sha256=p9trRNGbaaOyrG68sp-ef0T38eKnOXcaT0TBwdC6UMs,1217
|
|
246
|
+
wbcore/contrib/currency/viewsets/buttons/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
247
|
+
wbcore/contrib/currency/viewsets/display/__init__.py,sha256=5TGu-Uz_bbUA67zaktMY-DRjuws1tHAtfTVEzA5hPlg,112
|
|
248
|
+
wbcore/contrib/currency/viewsets/display/currency.py,sha256=T0uRjD1Z1jwQ7zk5m8RkeHo6LQ-udLbZJXxdEEFpPFc,1327
|
|
249
|
+
wbcore/contrib/currency/viewsets/display/currency_fx_rates.py,sha256=cVIwV4ns6Zwya8GBVk93Z9eBN3UZTr-bW_9kehtJpkM,391
|
|
250
|
+
wbcore/contrib/currency/viewsets/endpoints/__init__.py,sha256=ZYbYIrfa1BD1JsMqDS6P6NakuGwDQ8KklVC-UCWUCFM,69
|
|
251
|
+
wbcore/contrib/currency/viewsets/endpoints/currency_fx_rates.py,sha256=lIIVe9OEl4Mnt4dSnTk0ECJN7pir9e_1O1AloVic7E0,190
|
|
252
|
+
wbcore/contrib/currency/viewsets/menu/__init__.py,sha256=bfxdbZA_fCUVlpuk1UcaCRDck6GrD54ibltgIv661as,40
|
|
253
|
+
wbcore/contrib/currency/viewsets/menu/currency.py,sha256=RteLphkb5Xiv_vuYr7m40VI-Xc4MVV8KP_aaZa02bEw,310
|
|
254
|
+
wbcore/contrib/currency/viewsets/preview/__init__.py,sha256=G9VRhPUTHUgqT3QFJDmp4aSEuyyb5gOTMVkvL0jzBtQ,44
|
|
255
|
+
wbcore/contrib/currency/viewsets/preview/currency.py,sha256=RW1YvDlKpNjpLl-isBx0QFMX1GZ5Y-ZAZBI7n7H_wxA,332
|
|
256
|
+
wbcore/contrib/currency/viewsets/titles/__init__.py,sha256=hKk5twxzFy-1DxcjlS14CK5Twi3SjdM5K5xZ0Pgsaoc,108
|
|
257
|
+
wbcore/contrib/currency/viewsets/titles/currency.py,sha256=95jTrkdmD-XUoT89Z4Pec_bgmF16OVawxPsHD-lD0To,177
|
|
258
|
+
wbcore/contrib/currency/viewsets/titles/currency_fx_rates.py,sha256=SEQ_4YtXfMknpIE7n73sZFpPxZIk7Ui0IPVFfDjMdWw,341
|
|
259
|
+
wbcore/contrib/dataloader/__init__.py,sha256=J-j-u0itpEFT6irdmWmixQqYMadNl1X91TxUmoiLHMI,22
|
|
260
|
+
wbcore/contrib/dataloader/apps.py,sha256=_g2SvYI2mx7gQEKhDYqmnqd9MGRkJLtFk4L9nyoXwYU,109
|
|
261
|
+
wbcore/contrib/dataloader/utils.py,sha256=0ydcsy8wgMeVA-D0tkuEW8PK1vHS2UXlTsRFv5mmyy8,690
|
|
262
|
+
wbcore/contrib/dataloader/dataloaders/__init__.py,sha256=Ju9y7-j9p3-M0BbAwbZktV2-7SULxRnSsPL9XAothhQ,73
|
|
263
|
+
wbcore/contrib/dataloader/dataloaders/dataloaders.py,sha256=lPpOV1SZKoe0XLIMrBixcmTcRsBoIBx-5MAjEzJD1Ok,808
|
|
264
|
+
wbcore/contrib/dataloader/dataloaders/proxies.py,sha256=5pbyaDCjZVPwewAZ1rPftAej8Tuydnk5vN8Di84-kBE,3477
|
|
265
|
+
wbcore/contrib/dataloader/models/__init__.py,sha256=Sw2rgAO8rC0_LvCM5jU7LzjPr--PzNXrSQsH9DWIyrQ,29
|
|
266
|
+
wbcore/contrib/dataloader/models/entities.py,sha256=nx43_uGwogFeCx4G6Maaj1yJgYtHc37YwgVZvx2Ar9E,1292
|
|
267
|
+
wbcore/contrib/dataloader/models/querysets/__init__.py,sha256=6PXjmVYph0uh7874PTSEH5teidmKXLSLouaBJUNCCTc,37
|
|
268
|
+
wbcore/contrib/dataloader/models/querysets/entities.py,sha256=F8ymyhDbKQGCIXQHDmfaIEsnIuPYu9vqdfOyrTMDXe4,1115
|
|
269
|
+
wbcore/contrib/dataloader/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
270
|
+
wbcore/contrib/dataloader/tests/conftest.py,sha256=C83ss8UX4ieXyiAc3navNDKnxy1W_BhoeUC3xj87OIg,756
|
|
271
|
+
wbcore/contrib/dataloader/tests/test_dataloaders.py,sha256=_vwvhPousUh0itg6oryObKzlw0cq6ePyGi_-g3Hntow,1692
|
|
272
|
+
wbcore/contrib/dataloader/tests/test_entities.py,sha256=NQGDyGEXIdNyj55mYWjRllKiopWreXTMyi1tPBhRQ7o,510
|
|
273
|
+
wbcore/contrib/dataloader/tests/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
274
|
+
wbcore/contrib/dataloader/tests/test/factories.py,sha256=TRC7oa1lail4kGbBKumfVeWjRjzC4fCN6fgya4PiG_s,333
|
|
275
|
+
wbcore/contrib/dataloader/tests/test/models.py,sha256=SNGIxMsb19daPnqBfshvvIAv6_4k0xv_53i5y-Rn_SY,299
|
|
276
|
+
wbcore/contrib/dataloader/tests/test/dataloaders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
277
|
+
wbcore/contrib/dataloader/tests/test/dataloaders/dataloaders.py,sha256=MxNlxjESL0ITX7s_tKW2XgxTpGcRrsJ982FQk833QcI,573
|
|
278
|
+
wbcore/contrib/dataloader/tests/test/dataloaders/protocols.py,sha256=4M2fWQmGWYbqSY_xbAQT1dOaxVHMYmhx3cOFll_u9Gs,129
|
|
279
|
+
wbcore/contrib/dataloader/tests/test/dataloaders/proxies.py,sha256=AL7CunsWJW8G71zj-PxovSCqtkz2QLYpqMIkKLeVByk,349
|
|
280
|
+
wbcore/contrib/directory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
281
|
+
wbcore/contrib/directory/apps.py,sha256=X-Cl9KtrSMSQIl4gejtQmjDX56BOCHS6K8qZLKqXu9I,165
|
|
282
|
+
wbcore/contrib/directory/configs.py,sha256=wFGQi3WO2L_xfeQ0MG8FxVaozR9vBAvISHjedlHw6fs,282
|
|
283
|
+
wbcore/contrib/directory/configurations.py,sha256=x-4Eh-T76Xi82IVefdsEOvKzzf-OKrmrJ3qW-jqSjwM,2801
|
|
284
|
+
wbcore/contrib/directory/dynamic_preferences_registry.py,sha256=ejEzrt-gqmvI3q1NbndsUtbfpeLC7tzKiGrhVtwY4w0,2098
|
|
285
|
+
wbcore/contrib/directory/permissions.py,sha256=3i1n4AzGzHAx0L0H00KZKd4AHo90OHRdYk34opPYIjo,248
|
|
286
|
+
wbcore/contrib/directory/preferences.py,sha256=B6J1Y5jqEPW6VrnbuxdA9Sq94XFdrwP68wnBdYoaRjs,423
|
|
287
|
+
wbcore/contrib/directory/signals.py,sha256=GGAH1dr2IbqYOgEUjFgUkstu3oxAeuKiBmZrrHDh0MA,102
|
|
288
|
+
wbcore/contrib/directory/typings.py,sha256=NQq6BNOeiGufba_DiQnCyq5UE9rs2TpQHfGxK66YPRo,392
|
|
289
|
+
wbcore/contrib/directory/urls.py,sha256=GCmvAbPiZ9ZL-z2qzJ4QLnyPgypQB3_hw1i9LaE9nxs,6077
|
|
290
|
+
wbcore/contrib/directory/admin/__init__.py,sha256=lvt9etqGBJQTuVxDWkayijyo7GRqVFVlhv7aFpVbGh8,296
|
|
291
|
+
wbcore/contrib/directory/admin/contacts.py,sha256=eFKJZCq506ybMMp2as8rZhYd7rvzg8L86IpsLBc7Bz8,1505
|
|
292
|
+
wbcore/contrib/directory/admin/entries.py,sha256=A5WfBpRaHtZOHVlU6_ficp3CIOzB_pTwT-qbLii0TFE,7124
|
|
293
|
+
wbcore/contrib/directory/admin/relationships.py,sha256=-reoYuU4ZnM24wRZ3ny55ZGu3esPn7cl-qYAdnBPD2I,2312
|
|
294
|
+
wbcore/contrib/directory/factories/__init__.py,sha256=KIjvlqpnFetFpSEjYM1VKHO9FOWDhsIGueM3Framm7I,892
|
|
295
|
+
wbcore/contrib/directory/factories/contacts.py,sha256=M3CvWESxaZ_KDmQUfn0tsQBY0rUjSrIOVNE8D3lfgnM,1950
|
|
296
|
+
wbcore/contrib/directory/factories/entries.py,sha256=kz94tVbfSItuu-1tanfYRXYsWt6h7tet5UzKrU6W7LY,5124
|
|
297
|
+
wbcore/contrib/directory/factories/relationships.py,sha256=7IheRchJbDgB7mqy8LADcTtNB89cjodMoOSk1dAi_ww,2282
|
|
298
|
+
wbcore/contrib/directory/filters/__init__.py,sha256=uGgFoX06eC7P354m2q-29Ct5ijO3kCowh6Hqkpf_Pk8,670
|
|
299
|
+
wbcore/contrib/directory/filters/contacts.py,sha256=Ig9Qw4ZPStm121iLW1oLXWb9pW97Ydb3rNKYWrtQ3UU,7448
|
|
300
|
+
wbcore/contrib/directory/filters/entries.py,sha256=-0I0Q1ABKGcwXQadYD2R7mgOanAsOC_MziRN0oKh7Ao,10315
|
|
301
|
+
wbcore/contrib/directory/filters/relationships.py,sha256=ViY3cIsVYBPgJC3TXum034cW79Yaq70x9Hzitl0yIQQ,2997
|
|
302
|
+
wbcore/contrib/directory/fixtures/directory.json,sha256=os6Mh6zQ0expDqnYITNukS8VAfgxsjEXmBlztu8S3Q0,103580
|
|
303
|
+
wbcore/contrib/directory/locale/de/LC_MESSAGES/django.po,sha256=oqjk1IklxbtvP-nTgoEK5n8ddTFULsPenwyY_oCStD0,53419
|
|
304
|
+
wbcore/contrib/directory/locale/de/LC_MESSAGES/django.po.translated,sha256=I0mvMYysm5Pssq9MpIe4Hb7LZa90pE_Le8ywM2B-f18,59757
|
|
305
|
+
wbcore/contrib/directory/locale/en/LC_MESSAGES/django.po,sha256=FRl8GM4sCnNpmENxkjuGK59PWs4VfOS10OIHabWrZhg,45212
|
|
306
|
+
wbcore/contrib/directory/locale/fr/LC_MESSAGES/django.po,sha256=htnLdFmSN0MQRl4rt2M43yJEtpjWy_cYS9LqKuJtgvg,45316
|
|
307
|
+
wbcore/contrib/directory/migrations/0001_initial.py,sha256=KU4W2-R1ErwbJrYy_FzKXFP7dbKEoL4Aa4nyTMW-Ae4,34702
|
|
308
|
+
wbcore/contrib/directory/migrations/0002_auto_20230414_1553.py,sha256=O51CDBcFwUzuwAHJxIiwXpZzBecs8nzn0Ib4FfWiQ6w,1216
|
|
309
|
+
wbcore/contrib/directory/migrations/0003_remove_entry_last_event.py,sha256=5PmZTNLd3QVXUSo_2_rg_UmldsiT7bu3TORMpbdHpSE,332
|
|
310
|
+
wbcore/contrib/directory/migrations/0004_entry_is_draft_entry.py,sha256=_29otCq8a7c5NA5T0e8gK5cloobbnwNmpsRkC7GTdBc,612
|
|
311
|
+
wbcore/contrib/directory/migrations/0005_entry_salutation.py,sha256=oKQ-CeFt0_DHtMfjxRjlE8RUj6kqhOcPmZYg1G8ZKgo,441
|
|
312
|
+
wbcore/contrib/directory/migrations/0006_employeremployeerelationship_position_name.py,sha256=yE8DdAEMPuASClM6vx-130BYACDnGTPBqLgmHSlcndA,761
|
|
313
|
+
wbcore/contrib/directory/migrations/0007_alter_bankingcontact_options.py,sha256=y454KP8Tt6gXWcGRnkJ4BmvlVM9sI9qMkgUdJAr52iA,584
|
|
314
|
+
wbcore/contrib/directory/migrations/0008_bankingcontact_access.py,sha256=Rl6vDwHk5KDl4g2PrqMJTKxOzENqBTFN9yuGkIbq9po,469
|
|
315
|
+
wbcore/contrib/directory/migrations/0009_remove_entry_external_identfier_and_more.py,sha256=G9-JtdrLl56H1ehIlSVYpdEln855NT4cSdY2kI8vePY,601
|
|
316
|
+
wbcore/contrib/directory/migrations/0010_remove_addresscontact_city.py,sha256=Xudb9DCvQkLeliqGjJYgvqssz4FIdWnjf-n0pqtLHfg,1119
|
|
317
|
+
wbcore/contrib/directory/migrations/0011_person_description_person_i18n.py,sha256=1L-KnvbOkPl3MQk4Jco0TnmyDML-LkdOzk6PA193VHs,654
|
|
318
|
+
wbcore/contrib/directory/migrations/0012_alter_person_managers.py,sha256=Y-GWOA5-qXLZowsPQdvuXVcPDHkw9Pg40dEn11kdjEI,456
|
|
319
|
+
wbcore/contrib/directory/migrations/0013_alter_clientmanagerrelationship_options.py,sha256=sj9-aCqnzwqKyfYAyLfc1TW2o9X_oVVtNkT30fRuVdQ,560
|
|
320
|
+
wbcore/contrib/directory/migrations/0014_alter_entry_relationship_managers_and_more.py,sha256=KdejO9bxK0u7N-F5Ck-YeKjIiJ954rgdJ1EeobAMPl8,1318
|
|
321
|
+
wbcore/contrib/directory/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
322
|
+
wbcore/contrib/directory/models/__init__.py,sha256=XtnmU5YUr3SGig6PsSfGsWUaiBaX6kaHShBv3sbxZ14,526
|
|
323
|
+
wbcore/contrib/directory/models/contacts.py,sha256=8KVCmzNARTzeQgRtXe78QKhJr0SvEJ-aZcsRuYaMIbE,18322
|
|
324
|
+
wbcore/contrib/directory/models/entries.py,sha256=XXEWJ3UOvs8CgN0AekY7FOy4sNOww5jTpPTdDedYYb0,32365
|
|
325
|
+
wbcore/contrib/directory/models/relationships.py,sha256=7SZFo1tA7NRzS7_gv_fKwMsPPhawu90eWSrEvij_0rk,22108
|
|
326
|
+
wbcore/contrib/directory/release_notes/1_0_0.md,sha256=Twbl9RMLO6dbbm5dVoKorw8BecRqAYsKeobcNmDWHu8,165
|
|
327
|
+
wbcore/contrib/directory/release_notes/1_0_1.md,sha256=yHolV-HwBmIavaPn9pg0ABRgxQ-eKIuiAs-phKb_ix0,285
|
|
328
|
+
wbcore/contrib/directory/release_notes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
329
|
+
wbcore/contrib/directory/serializers/__init__.py,sha256=36WcX6aHrBuZXVWR0JSCeCCvJin_jOEaiwuSYBSs5eo,2131
|
|
330
|
+
wbcore/contrib/directory/serializers/companies.py,sha256=Bvxex_tq5lyR3k9Ox_Z2AnRQVyhPM0l1bdClJAjeEdo,5747
|
|
331
|
+
wbcore/contrib/directory/serializers/contacts.py,sha256=Q-3lmivmS4ci9XP-65lO1d06Gm6cQMgPH3YA8FY71ZE,15205
|
|
332
|
+
wbcore/contrib/directory/serializers/entries.py,sha256=QV_hlstwFWvhp-uiVPn3xMt0bES_6gKJs4rf_CVHIn0,13584
|
|
333
|
+
wbcore/contrib/directory/serializers/entry_representations.py,sha256=Pj8j4HYDINvXlLZ7onBypF2ZOK_GGzFZevd-yzESqoU,1397
|
|
334
|
+
wbcore/contrib/directory/serializers/persons.py,sha256=YtUgKKeijvV87JLtgeQtxmyk21COLQjSrb5klBw_EXQ,7641
|
|
335
|
+
wbcore/contrib/directory/serializers/relationships.py,sha256=jGrjy8M8kaxNRHHJ0HiDMdD_-wZFwioRJabCpCwHZ4U,12390
|
|
336
|
+
wbcore/contrib/directory/static/directory/markdown/documentation/address.md,sha256=gfUVi2PZh5uQ5sWkLG-AxYV9ULWeswRp3E2Me4fEs88,1865
|
|
337
|
+
wbcore/contrib/directory/static/directory/markdown/documentation/banking.md,sha256=5jgF1tqTGdr4fRaXCtobtpFEx0xcSmVYkKvzVALp4L8,28387
|
|
338
|
+
wbcore/contrib/directory/static/directory/markdown/documentation/bankingentry.md,sha256=RdfNbTXxpZG8kO-31d9c1QURlDcZRzMS2lEXHddiUbQ,1921
|
|
339
|
+
wbcore/contrib/directory/static/directory/markdown/documentation/clientmanagerrelationship.md,sha256=wqbS5OYigQSVZquqiM6NqH-q3gh7tApKFtm7jNracWE,78383
|
|
340
|
+
wbcore/contrib/directory/static/directory/markdown/documentation/company.md,sha256=xLSBAGFBQtig2Mi5bnmp4YGmttc4eEhTQXfRT1JtOaA,2049
|
|
341
|
+
wbcore/contrib/directory/static/directory/markdown/documentation/companytype.md,sha256=gGGIL0cI31-9-tGnziAijYPBl9GXzRAGZ1wi9KMDoxk,310
|
|
342
|
+
wbcore/contrib/directory/static/directory/markdown/documentation/customerstatus.md,sha256=hSLvmAVZRifuc0Xs1JWN28yfG0ibRu8fSKLX8io1fiw,325
|
|
343
|
+
wbcore/contrib/directory/static/directory/markdown/documentation/email.md,sha256=aB0RN6azEvqt3efwEV7LqitRcJGLYFPyDkqmMAKNBvI,1455
|
|
344
|
+
wbcore/contrib/directory/static/directory/markdown/documentation/employeecompany.md,sha256=vHuoa9B74O4Jqub_TOKQRxiWu3DMTN7b1z8a64XNd24,2151
|
|
345
|
+
wbcore/contrib/directory/static/directory/markdown/documentation/employerperson.md,sha256=PnEiqcXog5clhDoQNKVRB-jq2uZuPHT8SU4gXrg9NQo,2554
|
|
346
|
+
wbcore/contrib/directory/static/directory/markdown/documentation/person.md,sha256=8RldjzITzQCtl-KTdtECFDnXyV6t1rhtuKYU2NmLOJE,2331
|
|
347
|
+
wbcore/contrib/directory/static/directory/markdown/documentation/position.md,sha256=4d_Phbn6wemURlwOuMRka-9-vTDKgJ5E2KxaQuQ7VeQ,326
|
|
348
|
+
wbcore/contrib/directory/static/directory/markdown/documentation/relationshiptype.md,sha256=D3swigJ32R5m0_X51GaKMAWcVZJYfULRZx0x0uSGk_M,423
|
|
349
|
+
wbcore/contrib/directory/static/directory/markdown/documentation/socialmedia.md,sha256=hLz5Ke2MvqtWs9wsC8R12tAXsKlQSO2k_bT55HdIKM4,1611
|
|
350
|
+
wbcore/contrib/directory/static/directory/markdown/documentation/specialization.md,sha256=TBBiFZ00fniKDbXUtbbm-RfyIj48ZzDilxr6lpGmQwk,318
|
|
351
|
+
wbcore/contrib/directory/static/directory/markdown/documentation/systememployee.md,sha256=SCJned7QgoiiNVagmfBsRHeKC-c11R_nLotxcCJMmgA,1292
|
|
352
|
+
wbcore/contrib/directory/static/directory/markdown/documentation/telephone.md,sha256=M3edhYnv6CTG6VDCD0NYRvFUGCGTI4fEL08T0BvvE2g,1597
|
|
353
|
+
wbcore/contrib/directory/static/directory/markdown/documentation/telephonesearch.md,sha256=jSMfw5TddzjptfOxtzDa5490mQtb8XYF4w1nvexjijU,1114
|
|
354
|
+
wbcore/contrib/directory/static/directory/markdown/documentation/userisclient.md,sha256=gHwCxfPlbcZOtYAFzMwI46FpqT6nkt-EaWebpWAnkNI,353
|
|
355
|
+
wbcore/contrib/directory/static/directory/markdown/documentation/userismanager.md,sha256=I3ojIVTFZ_bEk8-67jO2Jrctk90kSzX-WrREDfplwpg,1037
|
|
356
|
+
wbcore/contrib/directory/static/directory/markdown/documentation/website.md,sha256=n8VAXbgxQh9zslLfLB0UhRgliMCvNS2N6gR-K0oTrkY,1453
|
|
357
|
+
wbcore/contrib/directory/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
358
|
+
wbcore/contrib/directory/tests/conftest.py,sha256=54xK711IfBc6Cj7MweNOGNdkP-ojjMcfqjP1G2XrSn0,1826
|
|
359
|
+
wbcore/contrib/directory/tests/disable_signals.py,sha256=kgVeTtzItEtLJ7MOVo9KdnRABsMvKBTub-vhHIMKO_M,1727
|
|
360
|
+
wbcore/contrib/directory/tests/signals.py,sha256=DqQkJWnq2Y0wTTLh3ICY3qZJLUpGJqiTTSV6YypqsDQ,3217
|
|
361
|
+
wbcore/contrib/directory/tests/test_configs.py,sha256=VouLg3TpDuxi_ljh8MtJGMhtW_h8OzCo15GyyApW16c,189
|
|
362
|
+
wbcore/contrib/directory/tests/test_filters.py,sha256=tc4G0XoUoDoiisECXtaftYCG69fdE42-EmkmLcjbN78,2492
|
|
363
|
+
wbcore/contrib/directory/tests/test_models.py,sha256=L2029y7pTUznRYHXJOKFpy_jdTBZvvbx3KwHMEcNSAM,19304
|
|
364
|
+
wbcore/contrib/directory/tests/test_permissions.py,sha256=lmGAiE0wtIDJkHEfNk_8NDwqN71FdPuu2qXvSMm0FbM,4231
|
|
365
|
+
wbcore/contrib/directory/tests/test_serializers.py,sha256=AIa-Rktw4EG2eywMSCz-X1rYcBSmw7Zzx38CghBVGzo,9202
|
|
366
|
+
wbcore/contrib/directory/tests/test_viewsets.py,sha256=pZJ-D-pxRP1IWNZDrKML_6j4iBcFzv8qpo59qX9MpOU,32624
|
|
367
|
+
wbcore/contrib/directory/tests/e2e/__init__.py,sha256=9KFYfXVP_0BwaYFvKQS4P_UMIAO1CFiwnK9sA3bPGdw,175
|
|
368
|
+
wbcore/contrib/directory/tests/e2e/e2e_directory_utility.py,sha256=zX71WsMmxQNW9ZLI-TMuxHmiY8PEZoBLt1ztqFSUDSE,7252
|
|
369
|
+
wbcore/contrib/directory/viewsets/__init__.py,sha256=U6f6zuZCtv0ohtLkVYqNNqKl2vk7cugXXoxlPKULA9k,1878
|
|
370
|
+
wbcore/contrib/directory/viewsets/contacts.py,sha256=LmQ_jK-SYG7u0A7DqBrNBTvRasvKtksE9JUVWLPW2OY,14428
|
|
371
|
+
wbcore/contrib/directory/viewsets/entries.py,sha256=U56N4abi7Eu4VbH2RAKpB-4fY7gZywmyxmY2s1bshVQ,6780
|
|
372
|
+
wbcore/contrib/directory/viewsets/mixins.py,sha256=8QI6mBpPxykVCvqABDZeQ0n7diHYoMafNH4ZMdCtC4c,353
|
|
373
|
+
wbcore/contrib/directory/viewsets/relationships.py,sha256=jy73aCven25PbLoy3-KTjnAxdItyYZdfkVoClz5ogc4,10045
|
|
374
|
+
wbcore/contrib/directory/viewsets/utils.py,sha256=2i7rIT8qMCD-ajT-uNN7Re4uMRwijrzvblokedJnwOw,3400
|
|
375
|
+
wbcore/contrib/directory/viewsets/buttons/__init__.py,sha256=dB3nD_NflX6U5muEMwtBcm3aNB0w65h42iYmtbMbFb4,270
|
|
376
|
+
wbcore/contrib/directory/viewsets/buttons/contacts.py,sha256=BECTH8ADx-Pz8kk11dpLGB2xRrkMI5emoIHcL8wdrJU,599
|
|
377
|
+
wbcore/contrib/directory/viewsets/buttons/entries.py,sha256=X7tH209qPojFNlBiE8hU5BrxQHa07WkBddVtvX-aCds,5660
|
|
378
|
+
wbcore/contrib/directory/viewsets/buttons/relationships.py,sha256=Q1vLLA9ZGt-s29Of8dj24IlMQzDzW_sMPU7n_F00DuY,2786
|
|
379
|
+
wbcore/contrib/directory/viewsets/display/__init__.py,sha256=NiC0d1-RjPIYEzkGAQzThNFQeYv5UAW3aKL9j_lFV38,945
|
|
380
|
+
wbcore/contrib/directory/viewsets/display/contacts.py,sha256=2PBSxVmbq_26LyhSTWrpjNv9cxKz7w086BqoVX7SDs4,13449
|
|
381
|
+
wbcore/contrib/directory/viewsets/display/entries.py,sha256=tK2tsiJvKy_SEWHq9TT30Nu1g158bpGv5z4EnFd9psQ,23548
|
|
382
|
+
wbcore/contrib/directory/viewsets/display/relationships.py,sha256=-s3ABMIGmbvmAOe8CRJqVv8RpKaMw7xeoy0HSvo0kRQ,11587
|
|
383
|
+
wbcore/contrib/directory/viewsets/display/utils.py,sha256=5sMFdEXUfanKp60IvTyO4YLqFlEUz9fGMldoqTYTnwU,830
|
|
384
|
+
wbcore/contrib/directory/viewsets/endpoints/__init__.py,sha256=0z1LYIrLQvIcs2qZEfD2SYB6tqycmSQjlJ4NwZgd0JY,647
|
|
385
|
+
wbcore/contrib/directory/viewsets/endpoints/contacts.py,sha256=Hnm4Iii5FMo8rDiv5tyqUvrKcSsG1w-b4GbjbIXk8TM,2036
|
|
386
|
+
wbcore/contrib/directory/viewsets/endpoints/entries.py,sha256=CdyzR0c49VQmFeJtlMHgC45lCbszBASu32HfTKBV0-s,1198
|
|
387
|
+
wbcore/contrib/directory/viewsets/endpoints/relationships.py,sha256=JDC7YqxnbuQDWM4RdI7zL_zs0oBQ-oSsdnvdDJxdpKw,2909
|
|
388
|
+
wbcore/contrib/directory/viewsets/menu/__init__.py,sha256=PbGcs_uz2LCwBqEChMlZSEw_EMRV-UoS7PoQ5nre27E,465
|
|
389
|
+
wbcore/contrib/directory/viewsets/menu/contacts.py,sha256=u6LkJkK48L9_EUjx_S-1qFSz1tl_MZz4RJQyLoHWBM8,964
|
|
390
|
+
wbcore/contrib/directory/viewsets/menu/entries.py,sha256=RxyVby1TolT7IKJuKtiVRK_xUvKl4I9_6SuztMJzMgs,2169
|
|
391
|
+
wbcore/contrib/directory/viewsets/menu/relationships.py,sha256=hMb9Vl9GgXGjXnNn97X-CfZ-PBZXf26svNLQ5mdaGxE,1228
|
|
392
|
+
wbcore/contrib/directory/viewsets/menu/utils.py,sha256=GXxYHnmXszrtvVucWXRFBkqpOjzaGXqirQ13nzPewkg,2410
|
|
393
|
+
wbcore/contrib/directory/viewsets/previews/__init__.py,sha256=6rzSOQGwIwSq9X_Percy8iRkj8D83lxnW-oc1seawTo,83
|
|
394
|
+
wbcore/contrib/directory/viewsets/previews/contacts.py,sha256=b5fsLe5259lDWI6KHSDscCZ2MM7fbTNM7hgRJWil3s0,640
|
|
395
|
+
wbcore/contrib/directory/viewsets/previews/entries.py,sha256=1IrseYPMkzGj9tDhN7aW_KpJWJoWQI6al-sbzwAwcSs,967
|
|
396
|
+
wbcore/contrib/directory/viewsets/titles/__init__.py,sha256=RVscoQgPm49N4MXFzuETip5SMIAVIUl2AYiW4FagbOU,832
|
|
397
|
+
wbcore/contrib/directory/viewsets/titles/contacts.py,sha256=mYySsi9nJg__zL-gVdP2FK2GwgJ00K7qFgOCm3bQduw,4389
|
|
398
|
+
wbcore/contrib/directory/viewsets/titles/entries.py,sha256=QTRrjPPVtouCjOfN4oJJB5pDpumwRqWX7Xy99z9Atz0,761
|
|
399
|
+
wbcore/contrib/directory/viewsets/titles/relationships.py,sha256=BWLGk6OQ29148BU3QZ1KdOf6KQ4LDQ1aYAzM7pQ6AHg,3627
|
|
400
|
+
wbcore/contrib/directory/viewsets/titles/utils.py,sha256=c9-63HB2rdbwDFYRtm9WTCglIq7ut5xZlRZ_YsHVKH0,1145
|
|
401
|
+
wbcore/contrib/documents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
402
|
+
wbcore/contrib/documents/admin.py,sha256=vh7dhViQ63Ot_olFvJMcRLjxFnQOK8T8QNzB7gOCBro,2378
|
|
403
|
+
wbcore/contrib/documents/apps.py,sha256=z3pYGj-qPkkpe88MP_G7uO_sb2uEvD_KZriePPbtX2Y,161
|
|
404
|
+
wbcore/contrib/documents/factories.py,sha256=4VGupvQQGNk43c1pubCyJfHRqlWjFTKhiiq8y-5G3Q0,1053
|
|
405
|
+
wbcore/contrib/documents/filters.py,sha256=ZRw_uN_MdP28GMK_7hM1mgoW1ZViL3oGEe49CBJwZ5w,2477
|
|
406
|
+
wbcore/contrib/documents/urls.py,sha256=1i3xEygi5myhLWo6OSy7fCd_m_ze_stRf871WsCKiqI,1769
|
|
407
|
+
wbcore/contrib/documents/fixtures/docments.json,sha256=xGsdB7WZ-k_06yC_2OfcQCeBc3T8TlQwLp3ex9DcdIM,4025
|
|
408
|
+
wbcore/contrib/documents/locale/de/LC_MESSAGES/django.po,sha256=kmmIkwn_e-NZn5sJdZs2NMYmW8I7EBLCLHzCDQAbEcc,8104
|
|
409
|
+
wbcore/contrib/documents/locale/de/LC_MESSAGES/django.po.translated,sha256=Nps6T9rTb7pOW_Q8P5p-5rdHIZUmq5pQyHYZKEqqcdk,8585
|
|
410
|
+
wbcore/contrib/documents/locale/en/LC_MESSAGES/django.po,sha256=gQWCige3yeOhPJVzVKlg8uyHY1UHurRM8o1ttqtFE4c,6859
|
|
411
|
+
wbcore/contrib/documents/locale/fr/LC_MESSAGES/django.po,sha256=hfoDk_EyqtXH4gxX0e_ER2GG7ttPzXmbLoxwgi01wxs,6954
|
|
412
|
+
wbcore/contrib/documents/migrations/0001_initial.py,sha256=MaNZPABi8xxlPsBwwbVoyOFUzT4JsS3XRCPqrNSSscM,7614
|
|
413
|
+
wbcore/contrib/documents/migrations/0002_documentmodelrelationship_primary_and_more.py,sha256=pLs6mNJKbxd1cAYRnYiVRftDAXyOfr1bATLasO8lgpo,661
|
|
414
|
+
wbcore/contrib/documents/migrations/0003_alter_documentmodelrelationship_unique_together_and_more.py,sha256=J50o7pAHBbM2_c78lEeeXwZDCMZayZaw6XM7_MRHpfY,965
|
|
415
|
+
wbcore/contrib/documents/migrations/0004_auto_20240103_0958.py,sha256=s8MDmGa-cfNAz-QCwdhhZe-Ulq1Vs-zIWmWFTQ0hKMs,1589
|
|
416
|
+
wbcore/contrib/documents/migrations/0005_document_valid_from_document_valid_until_and_more.py,sha256=0YTPLBbgFaAwuv8oQdQgjPjKLHHW9ASBHxEOdg58Eas,1012
|
|
417
|
+
wbcore/contrib/documents/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
418
|
+
wbcore/contrib/documents/models/__init__.py,sha256=25wDRkkATAkLYxfbwuVbua1sN3YrBW76cPqSXNGFzi0,205
|
|
419
|
+
wbcore/contrib/documents/models/document_model_relationships.py,sha256=20p_Dqxs1xSoyzF-3DqlzoO70nMcufYGHJNySc_tCrc,2195
|
|
420
|
+
wbcore/contrib/documents/models/document_types.py,sha256=bgIUVepm9CPAvCmOggh63ZfyyGdNp3FKZPEqEAuxuuA,1213
|
|
421
|
+
wbcore/contrib/documents/models/documents.py,sha256=-Qr9Lj95ZD27dJThiIkl1Yu_bvuPTTdNFIah6Amc4bE,11323
|
|
422
|
+
wbcore/contrib/documents/models/mixins.py,sha256=6b_FO8ZTQ779f28O33auYdrIXDmnnMOIKvfQOkivjl8,230
|
|
423
|
+
wbcore/contrib/documents/models/shareable_links.py,sha256=YFvKbAQ8VNu92c74edfw5zwnofjTDcPum_E43XpWVSE,2841
|
|
424
|
+
wbcore/contrib/documents/release_notes/1_0_0.md,sha256=MIX-LM8Rr4odLJACp0SBNVn1OwQzdkTmPyDgMV1ImH4,164
|
|
425
|
+
wbcore/contrib/documents/release_notes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
426
|
+
wbcore/contrib/documents/serializers/__init__.py,sha256=JQBjKbR6-rG5eIy4K0eSlH55vtdwqqztpqmhxC7yJa0,503
|
|
427
|
+
wbcore/contrib/documents/serializers/document_model_relationships.py,sha256=AvtHk3OGePZc3dXfqZjBtQrJhd_hx-2eUVsZZFfHKK4,962
|
|
428
|
+
wbcore/contrib/documents/serializers/document_types.py,sha256=Dtaq_EKOXbUU_x3cpuszbOHUFhY7_M_ehwDugV66BfE,1507
|
|
429
|
+
wbcore/contrib/documents/serializers/documents.py,sha256=JxsWrMyCKF52jothUGQZG2kYR1H2mynhBU7CGRQoxvo,2407
|
|
430
|
+
wbcore/contrib/documents/serializers/shareable_links.py,sha256=FbKWkDa8XZVbKcXh4ICTKMG0TQT3drSDlbnLlnegVBo,3319
|
|
431
|
+
wbcore/contrib/documents/static/documents/markdown/documentation/document_types.md,sha256=MebPHN-xP_gt58fKJQ6AgLKpIwE_7EPHytXdSrZ-okc,921
|
|
432
|
+
wbcore/contrib/documents/static/documents/markdown/documentation/documents.md,sha256=dbUB93mTQ-lSTXghaJYY51v58I-q9aAFtgg-XDY-Hds,768
|
|
433
|
+
wbcore/contrib/documents/static/documents/markdown/documentation/shareablelink.md,sha256=nsb21XNAB7eZiGnb6xiMzTy6uZyAzhaFUWtsSyU2x54,1121
|
|
434
|
+
wbcore/contrib/documents/static/documents/markdown/documentation/shareablelinkaccess.md,sha256=Bsd3AzJprSUqa8cS101LyUt-0muBt-ivBDS6wNHRHk8,932
|
|
435
|
+
wbcore/contrib/documents/tests/conftest.py,sha256=AP5whxYNsf77YBXRJEAV3V7bvkv7eX8KpXV-lMDyEUk,899
|
|
436
|
+
wbcore/contrib/documents/tests/test_models.py,sha256=OwJ5-tmvixA-7O28q6hmHhy46Y4Y_1dbSNIylVUwnrM,4973
|
|
437
|
+
wbcore/contrib/documents/viewsets/__init__.py,sha256=xo7GDVcZyBEQNrcOHydO-dFj68i8rBJ36Noxvgv_isY,461
|
|
438
|
+
wbcore/contrib/documents/viewsets/document_model_relationships.py,sha256=g7AeGHbA2wGyJfI8k4uXPIoICUMp34n9GnJ_QcNwjAs,975
|
|
439
|
+
wbcore/contrib/documents/viewsets/document_types.py,sha256=Vh17ppy3uWLV4dycjS0_WvjyNZkx3_3HqUExEKMPvdg,1416
|
|
440
|
+
wbcore/contrib/documents/viewsets/documents.py,sha256=DH_zz4Y9W4y6VxO3X3jZYiRSUSiM_Bxa2tiPjtrXX1c,5126
|
|
441
|
+
wbcore/contrib/documents/viewsets/shareable_links.py,sha256=6IEZ5GVBQpuXbQpXMiRWBTJ6rztUbz-emNW46JS6GQ8,4221
|
|
442
|
+
wbcore/contrib/documents/viewsets/buttons/__init__.py,sha256=nEK-1VEPwqPRe-V-15SwLjIUZbQ8fWZPoCmtXtbG9Jo,161
|
|
443
|
+
wbcore/contrib/documents/viewsets/buttons/documents.py,sha256=QQTvtOuS6nO7GvKJIjXO-dLwJksqDT0MQiiKcTuGgwI,2037
|
|
444
|
+
wbcore/contrib/documents/viewsets/buttons/shareable_links.py,sha256=0vmuSLN9uhWRafSlGwDA3dL_AR9ux3BU32qpm5_spoI,776
|
|
445
|
+
wbcore/contrib/documents/viewsets/buttons/signals.py,sha256=6p7dtvJwyTE_OGknKbg6QqrYbIYZK2mJ5wkTP4EAa1U,647
|
|
446
|
+
wbcore/contrib/documents/viewsets/display/__init__.py,sha256=j_anyJOMU-oxc6CIj9arJe9asOMDkuVYHw2X6bGWPa8,263
|
|
447
|
+
wbcore/contrib/documents/viewsets/display/document_model_relationships.py,sha256=_gJtBB9u7MU2mKNVjrLvRhxMcgeQiYDBsKWYtIGi4vE,679
|
|
448
|
+
wbcore/contrib/documents/viewsets/display/document_types.py,sha256=iZFtRDjDd2ir4vCdKdGZKjmxEYUHV-tRy9unkAjC6K4,810
|
|
449
|
+
wbcore/contrib/documents/viewsets/display/documents.py,sha256=-aBdAk9w6M3ORZYLIinlq3GT0b1y_IgOuyMChPjfwto,4277
|
|
450
|
+
wbcore/contrib/documents/viewsets/display/shareable_links.py,sha256=p8ZYt1N1HoapYEFj1vVQvPE7tLoIUhT7m2e6m4eE-N4,2367
|
|
451
|
+
wbcore/contrib/documents/viewsets/endpoints/__init__.py,sha256=S-14SZ88A8-JGIi_rF4es5ngJ6GrivIUUkplqZkbKeE,151
|
|
452
|
+
wbcore/contrib/documents/viewsets/endpoints/documents.py,sha256=Yoee84rx1g35L8vCKZkn41Bvf_-QIfO3IZX3WXigpi0,790
|
|
453
|
+
wbcore/contrib/documents/viewsets/endpoints/documents_model_relationships.py,sha256=kn_t5h1fjjTRXB90o6SaKjrNq52PFbtctaECIO0m4KU,537
|
|
454
|
+
wbcore/contrib/documents/viewsets/endpoints/shareable_links.py,sha256=oRuAhjyc10Xsjhe41LkrQYio9hbCjq52jY4db5AUSZ8,906
|
|
455
|
+
wbcore/contrib/documents/viewsets/menu/__init__.py,sha256=xHgejnbaCRzLAEGQegsJHiiDnw5vX1a6zm1XhXKHog0,60
|
|
456
|
+
wbcore/contrib/documents/viewsets/menu/documents.py,sha256=g39m1CErE6S8Ts03EGGPCab5ECmVsBkmuqpOL6MHbyg,865
|
|
457
|
+
wbcore/contrib/documents/viewsets/previews/__init__.py,sha256=t7CNvPWGU2bsDTQE9Z-EJISAFkr4PJuoABej_wIPEIU,45
|
|
458
|
+
wbcore/contrib/documents/viewsets/previews/documents.py,sha256=5KCNPT8sInQ-PrUoQ1QcQamTpzmcvaJ9edBloi7IqxQ,346
|
|
459
|
+
wbcore/contrib/documents/viewsets/titles/__init__.py,sha256=qhP14fcKb2Or82mvlB0EZgSsfyui3oPlh0SQj8ZlgcQ,164
|
|
460
|
+
wbcore/contrib/documents/viewsets/titles/document_types.py,sha256=5-wTGku3KcmWP-WwJzypE8b9Ue1baBAg5v_wYXA7WI8,380
|
|
461
|
+
wbcore/contrib/documents/viewsets/titles/documents.py,sha256=PXCSPaLSpG5WJG3MtZnJttKWUV4ygF_DnGelzitlHdo,1112
|
|
462
|
+
wbcore/contrib/documents/viewsets/titles/shareable_links.py,sha256=Sjtc3sna0ObHZXDx1teRTVxabGASNqecxRng7uPyx9c,374
|
|
463
|
+
wbcore/contrib/dynamic_preferences/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
464
|
+
wbcore/contrib/dynamic_preferences/types.py,sha256=4YiYzRp9773Dcuc3tSMmiret4XYK-IJ2Oqva3kX2OaI,4293
|
|
465
|
+
wbcore/contrib/dynamic_preferences/viewsets.py,sha256=bM6_L1sAUzg6BQ--BkU4-OT6wqsbqL-eSnFM6JiMCJw,1276
|
|
466
|
+
wbcore/contrib/example_app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
467
|
+
wbcore/contrib/example_app/admin.py,sha256=Eo9dnGvXdUEgfpzi2qmovfzJExFYd_ZgGVV2oOdsqKI,2686
|
|
468
|
+
wbcore/contrib/example_app/apps.py,sha256=h5pkRPxGGVlXFq95eGayfPL9XJAwFHGrsigYxFXLWN4,168
|
|
469
|
+
wbcore/contrib/example_app/models.py,sha256=_fyLDzUBJHrEq8PTbVGGmqGdll0mKp48EribeojqCZM,32831
|
|
470
|
+
wbcore/contrib/example_app/urls.py,sha256=KbHORgxYJc-w7415BSDf52eSsfjuvZV-0VKLLzRz90o,4813
|
|
471
|
+
wbcore/contrib/example_app/utils.py,sha256=zHEwC7IzIHpZoqFNVnuA75w0IIKKMR9xMpIYkNWKi5A,697
|
|
472
|
+
wbcore/contrib/example_app/views.py,sha256=OpwQciGHiLvjY56Gem3U4YfO8hM2FMGsrSoVz1qSTVE,214
|
|
473
|
+
wbcore/contrib/example_app/factories/__init__.py,sha256=eOak3Fa5SSIzUuBQxgozarS7ZXK5DMiws6z9pVJdAVc,318
|
|
474
|
+
wbcore/contrib/example_app/factories/event.py,sha256=BKlodLmQvVmq2cf0LIeriix9Agxznu-NHS1_Ns_AhWg,1049
|
|
475
|
+
wbcore/contrib/example_app/factories/league.py,sha256=xor6ZUBlNaJV_OTG8_NFjbJ7gc-n0k0Goj60p-jVqeg,648
|
|
476
|
+
wbcore/contrib/example_app/factories/match.py,sha256=hrXTsLn7ohHi_QDcehXsiNEQSqDM0tLGQEHBii0xIiM,1109
|
|
477
|
+
wbcore/contrib/example_app/factories/person.py,sha256=XagW9YmHJxUbL3Oz7cH1EPrFNHkcIMuPQH7bEMx56Jk,1101
|
|
478
|
+
wbcore/contrib/example_app/factories/role.py,sha256=_Y-ysHyP8HqvTDXl7m0imc3CIFWuqQpWHQnwOavlmCQ,215
|
|
479
|
+
wbcore/contrib/example_app/factories/sport.py,sha256=lnkL2ri9c8IExAZJpMiO7FvmE6VT4yYJsRza5M2aj9U,343
|
|
480
|
+
wbcore/contrib/example_app/factories/stadium.py,sha256=ELQvxKIJVyzICXbvihqBhRK8a_DVGwLXF29fZiLBevY,461
|
|
481
|
+
wbcore/contrib/example_app/factories/team.py,sha256=jNvkEBLP66A1NZ3E7PmUQw1i3FGfcKYarb52K9nHoxU,1343
|
|
482
|
+
wbcore/contrib/example_app/filters/__init__.py,sha256=01WWlH11C4ES6JSHeaKvJ3NqqVPw4i5B9VBUHYkOw_E,552
|
|
483
|
+
wbcore/contrib/example_app/filters/event.py,sha256=Zj20x6zIPoPICrZOyXrUA9T71rAM42iVcKQCyg-629Y,2999
|
|
484
|
+
wbcore/contrib/example_app/filters/league.py,sha256=bLl8cywYR1elXBuXRWtK3DQoKpXGKiS5Skx_B-iA_M4,2824
|
|
485
|
+
wbcore/contrib/example_app/filters/match.py,sha256=uJqLA_Te3ZN2wonPUyEyezBjUQgMGZQYX5bG5NXEP_I,3313
|
|
486
|
+
wbcore/contrib/example_app/filters/person.py,sha256=e8lEKsjsj2P6dOEti044k8Nq4quIDFuAcgfdCJqNAaU,2856
|
|
487
|
+
wbcore/contrib/example_app/filters/role.py,sha256=qtQLzqo_ZVqrQNiib7_oRdZUAwcxE2C2FNgjC4M_c_U,582
|
|
488
|
+
wbcore/contrib/example_app/filters/sport.py,sha256=H3xEcrAhOVPmXuix3J0FEjAjaJmb6o3vvCWEWcM_3vM,905
|
|
489
|
+
wbcore/contrib/example_app/filters/stadium.py,sha256=iClfcFfE9Ky1HXV__j4Hp5rVEXekl8Ff_pGjqEZ7iNU,1181
|
|
490
|
+
wbcore/contrib/example_app/filters/team.py,sha256=D8ifKD7KNSCk5prx3u9Qsj4eGsf2HS_HP0gX4IxqiRY,2778
|
|
491
|
+
wbcore/contrib/example_app/filters/teamresult.py,sha256=SGEgm6wVHFJEFSyd5YYTOO3HLcACrMUJNlm3mjKPgUE,2234
|
|
492
|
+
wbcore/contrib/example_app/fixtures/example_app.json,sha256=7u7VqxpdmmwgbdLX7bv4wRnc1wEbvIUe6v03o70EknQ,162136
|
|
493
|
+
wbcore/contrib/example_app/migrations/0001_initial.py,sha256=VVYWYh3kQKeDn4xb2Z7uIkgX-qPbQxtKs4TgF8PNVO0,20368
|
|
494
|
+
wbcore/contrib/example_app/migrations/0002_sportperson_profile.py,sha256=Vr_H2h47k6oC82AlGRic1OJyypwXjwJdHIyOvkeVzXc,1613
|
|
495
|
+
wbcore/contrib/example_app/migrations/0003_change_stadium_capacity.py,sha256=HV6M51ZIwhRiS6qNqxsMJ7DVrxrWzAl2y0UCmcwd4zI,914
|
|
496
|
+
wbcore/contrib/example_app/migrations/0004_alter_player_transfer_value.py,sha256=EjPPu5CmqGXnQPHEhevek2FGNO3mcycVDBwSBT_ohnY,533
|
|
497
|
+
wbcore/contrib/example_app/migrations/0005_sportperson_profile_image.py,sha256=aU6xOrBvWSZu3Qh4pe1A7giJLIOEQRWOXuS1d94IyKA,623
|
|
498
|
+
wbcore/contrib/example_app/migrations/0006_league_season_period_player_is_active_and_more.py,sha256=yGHGai8bnXZQ_1uhRG2lOuKDFWhOamFSCGU8HKjmOf4,4430
|
|
499
|
+
wbcore/contrib/example_app/migrations/0007_alter_player_options_alter_team_options_and_more.py,sha256=OLIVgOlby1dn2tyzRoSSr0Rmess9T8xmqUv38EOmNCs,1401
|
|
500
|
+
wbcore/contrib/example_app/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
501
|
+
wbcore/contrib/example_app/serializers/__init__.py,sha256=mP6q_a-YnigFFv1ZxyjnuyowXT9aknBHNn84ELIOjOI,1224
|
|
502
|
+
wbcore/contrib/example_app/serializers/league.py,sha256=JvN4CR4gSSOa8PJe4Cay5DVil2n1aBkJLJNaQX6kBxY,4443
|
|
503
|
+
wbcore/contrib/example_app/serializers/match_event.py,sha256=fIzH6sxHp8dZmlifOdKJufJntYLeFIzpPMOBUpkLdBY,11729
|
|
504
|
+
wbcore/contrib/example_app/serializers/person_team.py,sha256=6hx7TFM-SHmpu2ATUJCgW4MXYfA4gXPqxXMtIN2zRI8,10321
|
|
505
|
+
wbcore/contrib/example_app/serializers/role.py,sha256=RQ_RZM3SryxpFFzJkqCseSVtbYCUmc9Pk96NJJfFWpQ,443
|
|
506
|
+
wbcore/contrib/example_app/serializers/season.py,sha256=lQG5XpnwqvTbqpB-B6t3Uxj_vmNTDfdu8YN7Hgwa82s,1740
|
|
507
|
+
wbcore/contrib/example_app/serializers/sport.py,sha256=w6T-6inrBmWKY7OnqnP8EOn2WSctAmQcLeL3LOJJWpk,1299
|
|
508
|
+
wbcore/contrib/example_app/serializers/stadium.py,sha256=SkTDB92QC9ECwJePmu3tufkdG5nlwFw4u3Yle2HnkM8,2093
|
|
509
|
+
wbcore/contrib/example_app/serializers/teamresult.py,sha256=zCKFSP1RWHeh_OhAYr82zfY6a6TUxRMRdBVUifkQJ8A,1574
|
|
510
|
+
wbcore/contrib/example_app/templates/example_app/embedded_view.html,sha256=iKwdmgGmY4PL5AC7FWYbXJ2Cv4D4yREi1G-R2D8g0Po,1482
|
|
511
|
+
wbcore/contrib/example_app/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
512
|
+
wbcore/contrib/example_app/tests/conftest.py,sha256=QyZxcZOxi8gQR2lXyQ1G3Ag9OdJnNAQhoZ-DyqE7WzI,430
|
|
513
|
+
wbcore/contrib/example_app/tests/signals.py,sha256=KfPXtAHWC4lF3gDO8-PNFL_PkYZUnmOJMExwRcQ7SuU,238
|
|
514
|
+
wbcore/contrib/example_app/tests/test_displays.py,sha256=kahxT31FdFyfIaoVMedPxMgAfkwTM74OUgWS9zI1hQM,1764
|
|
515
|
+
wbcore/contrib/example_app/tests/test_filters.py,sha256=jkHuGmrhlr3j8bFSwGNR97jRsbcEpJz_VRT73bWgPcQ,3201
|
|
516
|
+
wbcore/contrib/example_app/tests/test_utils.py,sha256=IU15jXblB_vDHTDK9s0iVkOQtZQC0FViJJcbfzd5snE,1062
|
|
517
|
+
wbcore/contrib/example_app/tests/e2e/__init__.py,sha256=ocedjDOqGoZJBujJMaP4uWMmcPrWpXkUKItKBLfXr4M,118
|
|
518
|
+
wbcore/contrib/example_app/tests/e2e/e2e_example_app_utility.py,sha256=0Kn70E_g3O1WN3L7J2t3CKyxJ-f0VGnpXgzN6Ii-5K0,1962
|
|
519
|
+
wbcore/contrib/example_app/tests/e2e/test_league.py,sha256=VVyYgUeJcnvhRCzPFyDar0WInv5MpcJ9n0x3xSafqKs,2813
|
|
520
|
+
wbcore/contrib/example_app/tests/e2e/test_person.py,sha256=Ngl2agoBFfunMEFR7TGeRh6NTyj55tTG4DIHx-jJqP4,2854
|
|
521
|
+
wbcore/contrib/example_app/tests/e2e/test_teams.py,sha256=dvMskLYUEycqenh83cTQOK7AFwBh-bDftxAJaWiexG8,2295
|
|
522
|
+
wbcore/contrib/example_app/tests/test_models/test_event.py,sha256=V1zZcTqku4TKyDTfiIlVgb8pEwgQQ-vNLeI6vhzTIcs,3033
|
|
523
|
+
wbcore/contrib/example_app/tests/test_models/test_match.py,sha256=dWUGRGqmT3kIQ-C0zTOOTy_pyp-oEmp_TxBWlmrttqY,8671
|
|
524
|
+
wbcore/contrib/example_app/tests/test_models/test_others.py,sha256=mCyoaX_0tJmp1xHyPY2f_PhxzP8VMbt4fkYkV17J9-s,5915
|
|
525
|
+
wbcore/contrib/example_app/tests/test_serializers/test_league_serializer.py,sha256=ikP8gkRsR8pIG0RMBwjq43WiC9h-xZ5EAlEOU4ehxh8,1441
|
|
526
|
+
wbcore/contrib/example_app/tests/test_serializers/test_match_serializer.py,sha256=F0RXyeeHjcqnYAf1JDdeCzWyXCXMKs1xZr75SLLhG9w,5695
|
|
527
|
+
wbcore/contrib/example_app/tests/test_serializers/test_role_serializer.py,sha256=P8NUNCjbiz8grwX0nBoG8Y7v2GkZe_oq-As4rCBLpX0,516
|
|
528
|
+
wbcore/contrib/example_app/tests/test_serializers/test_sport_serializer.py,sha256=ilE43gIfG8H8x98KBrZOdI27U1P44dujAkLwc6Cmob0,527
|
|
529
|
+
wbcore/contrib/example_app/tests/test_serializers/test_stadium_serializer.py,sha256=d5OadgCZHC1UMSTarpunQHP8LP-rEjB1wWz5oUROQo8,547
|
|
530
|
+
wbcore/contrib/example_app/tests/test_serializers/test_team_result_serializer.py,sha256=bXo7v4lbgVd6fXMJxMQcOCGjmuj6o6QD0UDQ-3mbx_Q,1137
|
|
531
|
+
wbcore/contrib/example_app/tests/test_serializers/test_team_serializer.py,sha256=-x7F9mSFCUGuKwz-dka1uBrCYcK7EGXnn2NSgSsiILg,3095
|
|
532
|
+
wbcore/contrib/example_app/tests/test_viewsets/test_event_viewset.py,sha256=WItaov41m5pjwVqOxeTVGe8UZQiojJprItNiryKmUe8,8151
|
|
533
|
+
wbcore/contrib/example_app/tests/test_viewsets/test_league_viewset.py,sha256=FaKAmQj-1T4ojV1iYcPDMsGHpKNXGqlaWE6h0TTbdKc,3765
|
|
534
|
+
wbcore/contrib/example_app/tests/test_viewsets/test_match_viewset.py,sha256=FZkfZARFjR20IiMjObmqH9o5XZ_B8j4Ws5eJqJYaCOU,2870
|
|
535
|
+
wbcore/contrib/example_app/tests/test_viewsets/test_person_viewset.py,sha256=vNp5QnBDg8e5AuROhtCMM7hDzLYEVadXzNOQFF3PfvM,7635
|
|
536
|
+
wbcore/contrib/example_app/tests/test_viewsets/test_role_viewset.py,sha256=jWsYz-wWFQ6gu-EZiYHtj_cMy7EJhtqEzSj0UvUA6SI,3286
|
|
537
|
+
wbcore/contrib/example_app/tests/test_viewsets/test_sport_viewset.py,sha256=tiYotuMN4UNkIe-9TtOFocPrcfkKrL0Ua0WN0rf0xsk,3292
|
|
538
|
+
wbcore/contrib/example_app/tests/test_viewsets/test_stadium_viewset.py,sha256=JeqfT4O34tjnepryEJCwmlfPautMAoKZQEUtL_W1Di0,3351
|
|
539
|
+
wbcore/contrib/example_app/tests/test_viewsets/test_team_viewset.py,sha256=RebLlRwqz2wM1hmFVmml_dLaa9OzqzE2LRtj4vFHgFw,4243
|
|
540
|
+
wbcore/contrib/example_app/tests/test_viewsets/test_teamresult_viewset.py,sha256=ulVp3HnAM1apBs4svMc2VvZMow3XWMbtR4bA4ZbBnVk,2581
|
|
541
|
+
wbcore/contrib/example_app/tests/test_viewsets/test_utils_viewsets.py,sha256=s3W6w4hojZwmXOU1mYCNL7_GsS6PVHB4gKyznjWjRwE,5058
|
|
542
|
+
wbcore/contrib/example_app/viewsets/__init__.py,sha256=OSYKL4GYm6rIobWC4-ZTd1B0k1fcaaIrs0RHQ6EB56Q,1271
|
|
543
|
+
wbcore/contrib/example_app/viewsets/event.py,sha256=luXL6GilsVdb834Gk4YGWnsQS5Fnot-onBoXuRtBMnU,10130
|
|
544
|
+
wbcore/contrib/example_app/viewsets/league.py,sha256=hKt9ps4qq50pywP-nUG45-XMFYpmTJ9R9KRKCV4UmiI,2317
|
|
545
|
+
wbcore/contrib/example_app/viewsets/match.py,sha256=GZxujXaRQovaZ4vdS8JCLFk5ask6K6kRO3i4_qFdOqg,3993
|
|
546
|
+
wbcore/contrib/example_app/viewsets/menus.py,sha256=GUhB4GCQBSaD8j6irl5qEkVUyX5LOZiwRhqKluOHFqM,1482
|
|
547
|
+
wbcore/contrib/example_app/viewsets/person.py,sha256=YDaW8JWe5-Cia5iVTdHfIzWirxtKChc-lxp-KpwJTao,4998
|
|
548
|
+
wbcore/contrib/example_app/viewsets/role.py,sha256=f1h4WCpF0ndLl6akhiDLjrXZseZGUtHwi5hB9XKymsE,901
|
|
549
|
+
wbcore/contrib/example_app/viewsets/season.py,sha256=Z9VzSmLiW4sflM1ryffX8YL5D5IrX3Zx6Dn8qsRMMeg,836
|
|
550
|
+
wbcore/contrib/example_app/viewsets/sport.py,sha256=57Nz7yF1SJxUTXez1yFpalbDJiU69sWqhwJxJXSay_k,958
|
|
551
|
+
wbcore/contrib/example_app/viewsets/stadium.py,sha256=gbpNTTnav897_xGM3RndEkogPIH-ONPaXqwZDWGlbvw,1188
|
|
552
|
+
wbcore/contrib/example_app/viewsets/team.py,sha256=UOoao1ilgQkwaJWWcE-0p2g9DIPwQE8Zy4Q68FXRQm8,2351
|
|
553
|
+
wbcore/contrib/example_app/viewsets/teamresult.py,sha256=-Z3Nty5EdRYErEeNf3EenWRUQnLIAEiVIgRXswWsALw,3347
|
|
554
|
+
wbcore/contrib/example_app/viewsets/buttons/__init__.py,sha256=Oun5Eo0a5MpmFaAAf4lNNfr1QUBTjaO4u1-BYogN37Q,74
|
|
555
|
+
wbcore/contrib/example_app/viewsets/buttons/person.py,sha256=bg486fu7dv7_y2Tomg8a9XHHCwW5C2gM5VaX61CicC4,716
|
|
556
|
+
wbcore/contrib/example_app/viewsets/buttons/team.py,sha256=I5P46t_IzNNrJ4HEaPb-g9ZHiwWpOkcJrKjGNFMxo2I,841
|
|
557
|
+
wbcore/contrib/example_app/viewsets/displays/__init__.py,sha256=CZiRcXVZu_LNK78gkzCflIaPJ4PCbmEcgX6Id1I7fhg,845
|
|
558
|
+
wbcore/contrib/example_app/viewsets/displays/event.py,sha256=Am9ToLxCggrQ56lpP4Tb9_Qym-1tqMMJo9AgiE-ZPUg,7187
|
|
559
|
+
wbcore/contrib/example_app/viewsets/displays/league.py,sha256=xM_l7dxL-IHAjNpfXxG_zKl8RHHXLx4CeoinF_oG_0A,18196
|
|
560
|
+
wbcore/contrib/example_app/viewsets/displays/match.py,sha256=XOg4cDYI4Kd8ewA_yk9vpqOgYaqBWBnD-qHkdSMXRzs,10933
|
|
561
|
+
wbcore/contrib/example_app/viewsets/displays/person.py,sha256=cUEzHj-kiSBcQrSrFpPmPuBOFmidlOMP_Vh0ZhXMqbw,10647
|
|
562
|
+
wbcore/contrib/example_app/viewsets/displays/role.py,sha256=R3HQ9PgeXYy642xptwIKmoT3deZWQGUQdPFJ3fOlRpU,670
|
|
563
|
+
wbcore/contrib/example_app/viewsets/displays/season.py,sha256=tMOgvcGf-XS4eV3FuxAmabdkCa7Dz_bFadqYFjsYLA4,2749
|
|
564
|
+
wbcore/contrib/example_app/viewsets/displays/sport.py,sha256=2b6ZzJuh5fg8GgzqfwHvy5psY9JlvQNlN7Lses74cM0,4767
|
|
565
|
+
wbcore/contrib/example_app/viewsets/displays/stadium.py,sha256=2jvx-kUC3737jM6fm3ZmVYlB-dvorj05TL0SPZ3Z8GE,6523
|
|
566
|
+
wbcore/contrib/example_app/viewsets/displays/team.py,sha256=12-zbVZJFplP4XAsWcRs4Rhy5yIc2SEi6HocUa9cOo8,10591
|
|
567
|
+
wbcore/contrib/example_app/viewsets/displays/teamresult.py,sha256=dJA9q2RS4jU-aebwAA32Eei9DRiaMMonJVUd2B-Apl0,1231
|
|
568
|
+
wbcore/contrib/example_app/viewsets/endpoints/__init__.py,sha256=SpA5fcitkl5DNVLCW2GX6HBAsuMGCMnRbchFgqwWi7I,338
|
|
569
|
+
wbcore/contrib/example_app/viewsets/endpoints/endpoints.py,sha256=w925E2IVOTeJPt75Z3vLDnAOKqiLZJJX023jvNeUh2E,2866
|
|
570
|
+
wbcore/contrib/example_app/viewsets/menu/__init__.py,sha256=TP9eq3Or6YUte8XIqeAEMt2nf8hucWSc4O_ZzlHR7B0,36
|
|
571
|
+
wbcore/contrib/example_app/viewsets/menu/menus.py,sha256=b3F-k6bttwu091h3rQXV2HgEazfSgJqiiXDTsZp2q9k,2650
|
|
572
|
+
wbcore/contrib/example_app/viewsets/titles/__init__.py,sha256=DOLEEbTemMqxEkyBRdPH1a78Hv53ydBdfYej_ZVO8F4,596
|
|
573
|
+
wbcore/contrib/example_app/viewsets/titles/event.py,sha256=_qsqc1KkpiGcLJB3E2w2YUQ3oZ5u_WCDtMU_1cRocdE,1295
|
|
574
|
+
wbcore/contrib/example_app/viewsets/titles/league.py,sha256=zyG_7JpCMZk7Inl3A6gOp7X0eDEEmoybBmOg_Oi7st0,769
|
|
575
|
+
wbcore/contrib/example_app/viewsets/titles/match.py,sha256=Wme7myGA8Uj8y2FjvIfV-uE2UTewTwkfTeB7RXRz1Pk,1149
|
|
576
|
+
wbcore/contrib/example_app/viewsets/titles/person.py,sha256=3gninufPSlsZkG2vWv4asNzoVjUr20eJ1GgWwual29w,1023
|
|
577
|
+
wbcore/contrib/example_app/viewsets/titles/role.py,sha256=c3TJ63yR5s3OEMCiEpxsARQp2ZopWuz4LRprVjCgPG0,354
|
|
578
|
+
wbcore/contrib/example_app/viewsets/titles/sport.py,sha256=VHZmi0VB3ht1AYFIvejy85irVROcjuDj0bjCBUkEie0,358
|
|
579
|
+
wbcore/contrib/example_app/viewsets/titles/stadium.py,sha256=k_fTEuj6HEegzrLqxTAvRqTS1KDk02o-Z2iynBuFiC8,366
|
|
580
|
+
wbcore/contrib/example_app/viewsets/titles/team.py,sha256=oeAPxvk81R0lolHaWS9TnCG5OyFKwTBhTk42SP0_QX4,772
|
|
581
|
+
wbcore/contrib/example_app/viewsets/titles/teamresult.py,sha256=6GFxuiPXDHZnfH1KWFoWM-aTKxV08jNHg2h3DguIC-c,347
|
|
582
|
+
wbcore/contrib/geography/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
583
|
+
wbcore/contrib/geography/admin.py,sha256=jaiQb2iLZnAjay7RwNYqvJ61ptg-0Bn-GVJNlZWLrtA,865
|
|
584
|
+
wbcore/contrib/geography/apps.py,sha256=luoXZ__TvKlIoX_VqmrkQpkV5DxMKdsT9-TaCi3xyOY,108
|
|
585
|
+
wbcore/contrib/geography/factories.py,sha256=WhQTj78Lsol2IoxoapSGUsCvtKrgT1uB1eTYsDRncx0,1597
|
|
586
|
+
wbcore/contrib/geography/models.py,sha256=GSc-2IRK7fArTsUIuWAu15eP2ZqE-sW-2-JyQCU3VhA,5685
|
|
587
|
+
wbcore/contrib/geography/serializers.py,sha256=PRFcn6LrVzk8fLfMc8N0iYeenyyxOqVzSjo_9bYWncU,745
|
|
588
|
+
wbcore/contrib/geography/urls.py,sha256=sNZv8-EhLr2flKqd5gN6zKxIND4ZeA5yDuAVq5kKQRM,423
|
|
589
|
+
wbcore/contrib/geography/fixtures/geography.json,sha256=cvo42pJrwPLlV7Y38d8dOWBcD1oUsmxKnXveLWFIiYI,344362
|
|
590
|
+
wbcore/contrib/geography/import_export/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
591
|
+
wbcore/contrib/geography/import_export/resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
592
|
+
wbcore/contrib/geography/import_export/resources/geography.py,sha256=ACX7m9RjPBnDg7M2jJX7x--gD3btH_FbF1Buhb_-raM,387
|
|
593
|
+
wbcore/contrib/geography/migrations/0001_initial.py,sha256=aK3R_L0jKa-5KEBJGrmS2U8ZgsP7Wno5gpL8Joa_N2k,4458
|
|
594
|
+
wbcore/contrib/geography/migrations/0002_geography_geography_geography_tree_i739a.py,sha256=XxPGoJOigxUDp4YK_j9PUTtsYjPidlVtUsdWhIAfu-g,398
|
|
595
|
+
wbcore/contrib/geography/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
596
|
+
wbcore/contrib/geography/release_notes/1_0_0.md,sha256=NrP1LZ-N04QilS28vyPzokjfwjTGWs3eZ8ML3Gpw7nA,165
|
|
597
|
+
wbcore/contrib/geography/release_notes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
598
|
+
wbcore/contrib/geography/static/geography/markdown/documentation/geography.md,sha256=DngCyk0p45kocwkOSKVi0K6rA2AU0fRvkFaaHqlKhw8,1412
|
|
599
|
+
wbcore/contrib/geography/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
600
|
+
wbcore/contrib/geography/tests/conftest.py,sha256=PvdT2PEV9WNMgcZrcYr3fTpTe7DkXkcvKN8PPtQLX2U,635
|
|
601
|
+
wbcore/contrib/geography/tests/signals.py,sha256=KfPXtAHWC4lF3gDO8-PNFL_PkYZUnmOJMExwRcQ7SuU,238
|
|
602
|
+
wbcore/contrib/geography/tests/test_models.py,sha256=bbu16tfQFfWPkSzR2pVzBLLwnzw57ttfVQdC-FCprMM,836
|
|
603
|
+
wbcore/contrib/geography/tests/test_viewsets.py,sha256=xCk6i8LU6tOt1FLw-1BsSiUNVTapJmRXn4IjWNy2PgE,3791
|
|
604
|
+
wbcore/contrib/geography/viewsets/__init__.py,sha256=vc5uxdC_r5H2weA2Nce65kkst_Hf8soBBN3St32NX5o,77
|
|
605
|
+
wbcore/contrib/geography/viewsets/geography.py,sha256=__hfMW2BoTIP8jDRAh8uQRpr3c10GHAlygkSSsvavH0,2071
|
|
606
|
+
wbcore/contrib/geography/viewsets/buttons/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
607
|
+
wbcore/contrib/geography/viewsets/display/__init__.py,sha256=K_bRlRA3SNgHjwgSi6uJyuVwVNNtBAEKFaXsduMNiG0,46
|
|
608
|
+
wbcore/contrib/geography/viewsets/display/geography.py,sha256=7wKHyOmGYhAn4inuwYqAbu3PLWvEO_IKyAymKXIeFhE,981
|
|
609
|
+
wbcore/contrib/geography/viewsets/endpoints/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
610
|
+
wbcore/contrib/geography/viewsets/menu/__init__.py,sha256=YlADS1JgvgVZnQQCOhAWl-ubQ8YD5MRgJs4Rpr8rrMc,42
|
|
611
|
+
wbcore/contrib/geography/viewsets/menu/geography.py,sha256=eBML8uyLUWR7RNonOw-0FblK86BVbIeKCwazzEDneCY,303
|
|
612
|
+
wbcore/contrib/geography/viewsets/preview/__init__.py,sha256=G7CdD-h23NF9g7cgAgOmSQw9RX_GhFZ5awX991xyd3E,46
|
|
613
|
+
wbcore/contrib/geography/viewsets/preview/geography.py,sha256=Yuwi3nR-hrW_KRO4YS1d4Agmtit3ky-6pkWCLExzvsE,496
|
|
614
|
+
wbcore/contrib/geography/viewsets/titles/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
615
|
+
wbcore/contrib/geography/viewsets/titles/geography.py,sha256=s2Mm3c4moioeEYtD-nnv09i2HhGkoa7rAIXWFZoquhk,386
|
|
616
|
+
wbcore/contrib/gleap/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
617
|
+
wbcore/contrib/gleap/apps.py,sha256=UyHSysBiDzQCV2ef8oqfd8G3ccfaiVGoY7b0rJTQytQ,103
|
|
618
|
+
wbcore/contrib/gleap/configs.py,sha256=IpcSbiuEj5_UiHPB8YIPyxXQDlm0qsKOkt1JpDdjbLs,403
|
|
619
|
+
wbcore/contrib/gleap/configurations.py,sha256=UOXVoiLXcx83G4dLIVUzUur3nxc6tYHAkIpTPtdbGww,188
|
|
620
|
+
wbcore/contrib/gleap/hashes.py,sha256=ayLpHfKNtC3jn_0Z7E6QLmg90vaGD8oMWky-9s6APPk,314
|
|
621
|
+
wbcore/contrib/gleap/urls.py,sha256=0g0EfJO90ketG8dCp3sUOfFuOjqOma_XDTqKoU8b4C0,295
|
|
622
|
+
wbcore/contrib/gleap/views.py,sha256=8UthTu7LRRW_pi8muUDWzXVtBaQhwCRNox9JSriF5lQ,1088
|
|
623
|
+
wbcore/contrib/gleap/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
624
|
+
wbcore/contrib/gleap/tests/conftest.py,sha256=q9RKC6JpBsW4ZlgtnuB_V1uHtKUys4Zn0BGu3m4NbRI,36
|
|
625
|
+
wbcore/contrib/gleap/tests/tests.py,sha256=jtPqW_ATh8OFIEb4R8RMMrhAbcNrB0FamOj1L3slT4E,714
|
|
626
|
+
wbcore/contrib/guardian/apps.py,sha256=dHE4YM4uk92w5Xsmk_P1agutR_1jQytTq9dRDaj-BAU,139
|
|
627
|
+
wbcore/contrib/guardian/configurations.py,sha256=rzSTs_4zbADDSnmqgqRHYd83gKdPAGyrHdegQtnH-qQ,168
|
|
628
|
+
wbcore/contrib/guardian/filters.py,sha256=36dXy8IaSyPDKc7QkAip4d_12U1luCOKH3ujXgjBHqg,752
|
|
629
|
+
wbcore/contrib/guardian/tasks.py,sha256=hCUKRkcASTnSjLIQTOgU5C6pNDCL2soyij-JzTjLU08,588
|
|
630
|
+
wbcore/contrib/guardian/urls.py,sha256=UCUiYxALnbEH7ZNKs4jp_xBx6vHClsVi9Hd_NR1_0Wg,412
|
|
631
|
+
wbcore/contrib/guardian/utils.py,sha256=3CP48t9r8puWQ1lFCmoPTVLnrXQc02h7bwEthnWQMCo,5198
|
|
632
|
+
wbcore/contrib/guardian/migrations/0001_initial.py,sha256=IB4_ls922OVdC3r_9FhIFR_xom0wic2NOwYG9gRo8S8,4609
|
|
633
|
+
wbcore/contrib/guardian/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
634
|
+
wbcore/contrib/guardian/models/__init__.py,sha256=63_HSsJbwNgPPt67vyZKHm5dqB8X-YIAF6tRlK9YgQk,64
|
|
635
|
+
wbcore/contrib/guardian/models/mixins.py,sha256=lzSz8AKn_TnJvzzEMTTLY6xyoerD8jujZXgAm4DFRts,5705
|
|
636
|
+
wbcore/contrib/guardian/models/models.py,sha256=KlvruzHS6ogviEm_fklGKO6dzqZCpnE7cKNJxDmfy4Y,1121
|
|
637
|
+
wbcore/contrib/guardian/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
638
|
+
wbcore/contrib/guardian/tests/conftest.py,sha256=5HFVx8rTnexM2qlPyzDTmhngVZrKVO7ibSqm5i2KoFg,67
|
|
639
|
+
wbcore/contrib/guardian/tests/test_model_mixins.py,sha256=CdlCl19I4Fff8MIRgk06lwSGxKB6pu20dIRHAY3VkVg,4062
|
|
640
|
+
wbcore/contrib/guardian/tests/test_tasks.py,sha256=hrVyC_hXYIELlZqOszrK5PtfileTQZ86-q16Xz6k5cw,3305
|
|
641
|
+
wbcore/contrib/guardian/tests/test_utils.py,sha256=PWdfQmvtaXyqLP5E201S8FFkdXh4hBDcoVoU-sVJSro,8178
|
|
642
|
+
wbcore/contrib/guardian/tests/test_viewsets.py,sha256=bRVHVtAZ06cZbpprJJKmJQHfTwzn7CT1w9Xq78QbiZ0,2308
|
|
643
|
+
wbcore/contrib/guardian/viewsets/__init__.py,sha256=Fc9L_HXR1AnSAKn8OdwBSrLu9Zg2F1Fh4l0C1Pt0e6Y,60
|
|
644
|
+
wbcore/contrib/guardian/viewsets/mixins.py,sha256=Nu0_7zFuudd-sUJy6eEIUTIWUE4JMCHUY-xJLo5onvQ,235
|
|
645
|
+
wbcore/contrib/guardian/viewsets/viewsets.py,sha256=GrICS2GGGhrQX9ds3pp3y2nkVCDXzBZdH7CX-H0Ns2s,5764
|
|
646
|
+
wbcore/contrib/guardian/viewsets/configs/__init__.py,sha256=XP5aJk3srxn7neISjnTvTHTHwHc53WAg77RyAUaFga4,286
|
|
647
|
+
wbcore/contrib/guardian/viewsets/configs/buttons.py,sha256=Vi2WL7ead8W7FgulcGgpsqei-rno0-rAqxIQjKWJoOw,1397
|
|
648
|
+
wbcore/contrib/guardian/viewsets/configs/displays.py,sha256=CtVHdBexRTm8qdMETNAvxSKwhEHofoKgqe_Hu9IP2MM,1558
|
|
649
|
+
wbcore/contrib/guardian/viewsets/configs/endpoints.py,sha256=qsLsDPmR5sopKuDwnmhHGDN-qzbcCRt5BvP-JvMxSG0,1037
|
|
650
|
+
wbcore/contrib/guardian/viewsets/configs/titles.py,sha256=ASsOasxjqfMLGqguu8QDyYUwc4yvvKYZYQNU5gbH9kM,518
|
|
651
|
+
wbcore/contrib/i18n/__init__.py,sha256=StXJ-OqqI2M8rCbisUDrvRcYHHEG2J91Mja1Io8HgFo,96
|
|
652
|
+
wbcore/contrib/i18n/buttons.py,sha256=2sEPAUvjJTr5z7ts71Ai8d_9Oxyt8wjY-Z1XgCsoOsk,1490
|
|
653
|
+
wbcore/contrib/i18n/translation.py,sha256=_LzWKzu-OxtGrzIXIqLIVIGwkXG0TAe4Mgjrcr-MXP8,4971
|
|
654
|
+
wbcore/contrib/i18n/viewsets.py,sha256=8bNkDBGBBUziDebHIPCFLs1TNLsj5xeYFPdDRtiB0Ns,1671
|
|
655
|
+
wbcore/contrib/i18n/serializers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
656
|
+
wbcore/contrib/i18n/serializers/fields.py,sha256=HhEN-I5fcMslMrZdiCQdYWyGfRGgOXQqzE9BR7b4pJM,760
|
|
657
|
+
wbcore/contrib/i18n/serializers/mixins.py,sha256=XBuvpVbtZE0LFuGvF972e1aLfzBkFSmHUxbJvy03NzY,486
|
|
658
|
+
wbcore/contrib/i18n/tests/conftest.py,sha256=S0kfCoA_Aq-05_75AXfPod0oWitji1un8_wZZU268Ac,464
|
|
659
|
+
wbcore/contrib/i18n/tests/test_viewsets.py,sha256=cWDwIdVwEmVMbidU6fLVxjFFJH8FF8VuiM-sp4d7slE,2060
|
|
660
|
+
wbcore/contrib/icons/__init__.py,sha256=zMehywxDfn8IvNcMW-6TSai6FpXE7Dd4m6X2GI5l4Bk,26
|
|
661
|
+
wbcore/contrib/icons/apps.py,sha256=CbfoZkSePdV9nlUwxtNk0qMiWIR8XtBSNCmUbH1Clg8,102
|
|
662
|
+
wbcore/contrib/icons/icons.py,sha256=IcC6zxyWGELr8qJWY2Obb_R1wJPdcxOZ56h1r2ElESo,6715
|
|
663
|
+
wbcore/contrib/icons/models.py,sha256=CaLITnSbltSJTKd_kieT1FAK0vrvKURVElilzqFF4wE,304
|
|
664
|
+
wbcore/contrib/icons/serializers.py,sha256=C08Gr43K3dv2jB7DcAqnBz-RD9r6O9t2E_JIV8k-P-Q,582
|
|
665
|
+
wbcore/contrib/icons/backends/__init__.py,sha256=GrA72d_857UivZzBmLkqgqLEqccF0L2pjpAcDTsPWls,118
|
|
666
|
+
wbcore/contrib/icons/backends/default.py,sha256=bH1e6M1ThAHW2cYmKb0YaqWxjO0CPbmDRB9KWmrfkwY,14191
|
|
667
|
+
wbcore/contrib/icons/backends/material.py,sha256=hsj_KRjTgHDIFJh4BDWGkx75SmtxklQpjYURhcS7GL4,3806
|
|
668
|
+
wbcore/contrib/io/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
669
|
+
wbcore/contrib/io/admin.py,sha256=Xd6LplibZI4azDt0GvS1-vHaMIGT2TDfBufU0LV2YEw,4813
|
|
670
|
+
wbcore/contrib/io/apps.py,sha256=6k6kj1S5ytYSg8YLWAkuRu39BpZJUuCd4RPH1PmaCng,1304
|
|
671
|
+
wbcore/contrib/io/dynamic_preferences_registry.py,sha256=9asttbLsmI0x64QGokmLTrs2oCOdLqSYB55mYHmQBPA,844
|
|
672
|
+
wbcore/contrib/io/enums.py,sha256=9Ph2hUn-cjfvTIhPGxlC07qubPS6R3B9ilvC3tpMm8o,417
|
|
673
|
+
wbcore/contrib/io/exceptions.py,sha256=-9pTtBr4oj7qBpKwnsN7sabu5S6gpDkWTXkA4ZaW9EE,690
|
|
674
|
+
wbcore/contrib/io/factories.py,sha256=VVtUf_YPJOkT0YmJ0M09bKz1RINd98yb-ZJKwu5F5R0,7133
|
|
675
|
+
wbcore/contrib/io/imports.py,sha256=Hu8ppai06SQ_CDQ2oUbFcwduAhekCp1l1DB89kTn2nQ,13087
|
|
676
|
+
wbcore/contrib/io/mixins.py,sha256=Sy_1mfdJzrIODCRcbfiA6miU8EqKEaJhL7mEjsRhOvY,1297
|
|
677
|
+
wbcore/contrib/io/models.py,sha256=X5zb00EkpiOaAALAoXV4JmtSwn6QApGYWbIMCPwVFJk,40536
|
|
678
|
+
wbcore/contrib/io/resources.py,sha256=eGEpmyrtkB3DgFKV6m57OFzyu6jBZUIXkn5Jopeus9M,6953
|
|
679
|
+
wbcore/contrib/io/serializers.py,sha256=oS5od8ni8wUZml1zM_RAdW9VWrw226Ru4v3RBifOnFY,4639
|
|
680
|
+
wbcore/contrib/io/signals.py,sha256=jCGHjt5Qg2T1aIi4BzWYzWYb2YZT82gUMhG68v2rx58,145
|
|
681
|
+
wbcore/contrib/io/tasks.py,sha256=auozEPYqu_R7pjwr_1QSS5csGAYIEEWIVqNjSLzZhkw,859
|
|
682
|
+
wbcore/contrib/io/urls.py,sha256=v91WUMYKwQhI9mDnpScP6hvYdGSdQZg0yQzEljCZ4lk,1014
|
|
683
|
+
wbcore/contrib/io/utils.py,sha256=SMjQeUEg_cuBKQfnKGj-qjJDC8Z_xCOQ-t7VZxwCZt4,1359
|
|
684
|
+
wbcore/contrib/io/viewset_mixins.py,sha256=RhO8TE9RPQsubSd2H2XgIJLD92tHu-7_gO8JwROxtHI,11419
|
|
685
|
+
wbcore/contrib/io/viewsets.py,sha256=jovVPfg9MnhLPT6c2S_VJud5e232-gDFFe-Zq7JGstY,5005
|
|
686
|
+
wbcore/contrib/io/backends/__init__.py,sha256=5QaSbVikVGaD3RHfBl0I7pFsyKm1YDZAxS4cvzfhPLs,90
|
|
687
|
+
wbcore/contrib/io/backends/abstract.py,sha256=PKhjS6Nr-FwZfCwNlMCWgXaMoGy0XzE-58x1T7JzNoM,2101
|
|
688
|
+
wbcore/contrib/io/backends/mail.py,sha256=arSuRTKeRqgXyrva6dUjnfxFiq4szbrExbw5bsiGxnI,1803
|
|
689
|
+
wbcore/contrib/io/backends/utils.py,sha256=tDmN-H6fr4u8r9fhwSOQ40jxno-3RDq2ebmT76cfHYg,1200
|
|
690
|
+
wbcore/contrib/io/configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
691
|
+
wbcore/contrib/io/configs/endpoints.py,sha256=YEKFR58PoMguH4BJDsbIRsi6PtmA5OvI5_Z-pdaZ2HQ,479
|
|
692
|
+
wbcore/contrib/io/configurations/__init__.py,sha256=mFiv5r53ErMuTGSoATHNM0qf1Dy6XBKPI7GGeEK_PKE,48
|
|
693
|
+
wbcore/contrib/io/configurations/base.py,sha256=uQ0EI6wIYuF31x-a2VCXSkS_Sxp1_MCMCfjAbNqvw0Y,358
|
|
694
|
+
wbcore/contrib/io/fixtures/io.json,sha256=o75Rt9Mx8d_oAwJCKeWA6QYHSQfbgTFtndxYyj6HLio,4973
|
|
695
|
+
wbcore/contrib/io/import_export/backends/__init__.py,sha256=I9wpKRM0xrTPjmU1BjrrKLOALx3NhL-vPOvD23-N-O4,139
|
|
696
|
+
wbcore/contrib/io/import_export/backends/mail.py,sha256=2O6HCi4NxQHpcktaiFzVA2VFdBCx_69eQdVyf3nVbCo,2172
|
|
697
|
+
wbcore/contrib/io/import_export/backends/sftp.py,sha256=va27MF_naWE2horVOGkrqBKfI8RnvBrrqdSZesO_neU,2614
|
|
698
|
+
wbcore/contrib/io/import_export/backends/stream.py,sha256=ywSZCm8ccC1kxB9CBt0PypshdZooAxo5eHZboPwzcnY,3090
|
|
699
|
+
wbcore/contrib/io/import_export/parsers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
700
|
+
wbcore/contrib/io/import_export/parsers/base_csv.py,sha256=6CPeV5j8VBeFOothav42kJEkY1F5d_ucVTRfnX8boiM,1250
|
|
701
|
+
wbcore/contrib/io/import_export/parsers/resources.py,sha256=pTLGDf23S4Q5iNQE782a9Zgxep_WrziMX8mWO3z3SbY,1886
|
|
702
|
+
wbcore/contrib/io/locale/de/LC_MESSAGES/django.po,sha256=98w3QBX3Evo7W8kRGx7fdedT3jJX_vF5go0c0TguNqU,3235
|
|
703
|
+
wbcore/contrib/io/locale/de/LC_MESSAGES/django.po.translated,sha256=KSVtjDxjCHfWg4Hq-sbkIKvGsOusXuOMFhEmOYkKFF4,2558
|
|
704
|
+
wbcore/contrib/io/locale/en/LC_MESSAGES/django.po,sha256=8QyjmE4MJoz10z3k6tLXpW-mF8988Uh0CEndIvtLSTw,2920
|
|
705
|
+
wbcore/contrib/io/locale/fr/LC_MESSAGES/django.po,sha256=BRPPhvww5KJVqmM7n1xCuXwCb6gR-ThKn0fnSGEr-WI,3012
|
|
706
|
+
wbcore/contrib/io/management/__init__.py,sha256=ZRCdDdhJ-oPQoKJj_NVRaSAXdQGNXVVCtUqfkbWE9hg,510
|
|
707
|
+
wbcore/contrib/io/migrations/0001_initial_squashed.py,sha256=mJXj5Yc2HsrRXIhsPVbyrK8j4YBF6zK3mGtwls1T0to,13061
|
|
708
|
+
wbcore/contrib/io/migrations/0002_importsource_creator.py,sha256=fhATF-pjLD2R6bnH1XQdZ6e6BYifbBArCOGrkBYFguE,720
|
|
709
|
+
wbcore/contrib/io/migrations/0003_auto_20240103_1000.py,sha256=FIGCsO1vdqZn4-YVHrO-IRRIlENCuL-UkwoCnyQwPkQ,1553
|
|
710
|
+
wbcore/contrib/io/migrations/0004_alter_importsource_status_exportsource.py,sha256=csJlDBvna8jTDOqcfwkiICEpkKwSlS4pZp6fL6qiZDY,5218
|
|
711
|
+
wbcore/contrib/io/migrations/0005_exportsource_data_alter_exportsource_query_str_and_more.py,sha256=4Q3hbE-ghWHi2F9NZy9poydLa_1lNjttFo0eCrgqEQw,2402
|
|
712
|
+
wbcore/contrib/io/migrations/0006_alter_exportsource_query_params.py,sha256=JHnzz6C1Mr2kVcD5bBJMO6eNvqSFfvw6c0NoGL7pcqs,578
|
|
713
|
+
wbcore/contrib/io/migrations/0007_alter_exportsource_query_params.py,sha256=xHVM23caWAPjo1eTrfTm37G20j8r_AxapoEgb685c2Q,617
|
|
714
|
+
wbcore/contrib/io/migrations/0008_importsource_resource_kwargs.py,sha256=dZx4LUedW8I1Sf0JBMvWgauFbJlzw6HBT6WjhQUW72c,419
|
|
715
|
+
wbcore/contrib/io/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
716
|
+
wbcore/contrib/io/release_notes/1_0_0.md,sha256=1nJ-vnOKk4l5-gU8GTyKrvoz-YUKSGyX96KBoFDlKQc,238
|
|
717
|
+
wbcore/contrib/io/release_notes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
718
|
+
wbcore/contrib/io/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
719
|
+
wbcore/contrib/io/tests/conftest.py,sha256=ycb7GE_yHhF9ExUH5E5vdAsYtu_h_9ft-AITp5fOGVU,1193
|
|
720
|
+
wbcore/contrib/io/tests/test_backends.py,sha256=D4y4JcI_x6aTzz6CHRrFsCdz-DUAhI0ByyaQjIAhWpY,4670
|
|
721
|
+
wbcore/contrib/io/tests/test_exports.py,sha256=yIpGwUY0yWY7_0YQ0v62qxXN1xyo-BeM_yAgM1yt89Q,5300
|
|
722
|
+
wbcore/contrib/io/tests/test_imports.py,sha256=0n99vPnItSeXMlwubr9g1k8UODR73eYQSkCBp5EAKtQ,7641
|
|
723
|
+
wbcore/contrib/io/tests/test_models.py,sha256=QJGHTs7pa1gqNcPyqqp2EIN7SwBbGp-kbIcL6lFmgBk,14232
|
|
724
|
+
wbcore/contrib/io/tests/test_viewsets.py,sha256=Fzd1G5gOc03gxpPwCX8juHgeazlSadZPq56k4ZvgoSY,9178
|
|
725
|
+
wbcore/contrib/notifications/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
726
|
+
wbcore/contrib/notifications/admin.py,sha256=aeLRLXw-5-fRXrrRAyFBtoFo8rzu8XSozM1_q-yWdV8,1672
|
|
727
|
+
wbcore/contrib/notifications/apps.py,sha256=O5rwHeCn3FBTE1rjJgNDahJcGXQqezvIEX7T1RtBsZ8,1883
|
|
728
|
+
wbcore/contrib/notifications/configs.py,sha256=Brt_79I8teg-sLzy6KBVsb0eXg-KFmgv_t-bNdznX5k,538
|
|
729
|
+
wbcore/contrib/notifications/configurations.py,sha256=ZoNd8cdbw8Y-rQIQtS2VgieUO8FQ-kdgZdzNMwqL484,327
|
|
730
|
+
wbcore/contrib/notifications/dispatch.py,sha256=KgTMe6nZGENoYmeXn_3ay0tl2sDPi9IdSOxVVLrbKKM,3320
|
|
731
|
+
wbcore/contrib/notifications/tasks.py,sha256=rdOFPLPiRKEuP9YqAdhnQD-93GvR4C0JykwCD9ziF7w,2117
|
|
732
|
+
wbcore/contrib/notifications/urls.py,sha256=C764DdlQcJaPjzRKqKrLxKMhpZITZe-YLZaAQOFtzys,872
|
|
733
|
+
wbcore/contrib/notifications/utils.py,sha256=Ou8JwrsDfJ_OHaz4qJuNrR5nhgKXAatRyFyWwAYrCaY,929
|
|
734
|
+
wbcore/contrib/notifications/views.py,sha256=kr7UNwSdQpiwc0-N2KB6zsqNXcodsAcu2wpPblHZoO0,2601
|
|
735
|
+
wbcore/contrib/notifications/backends/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
736
|
+
wbcore/contrib/notifications/backends/abstract_backend.py,sha256=gdCQn3YRoTGOy19N3TNfsBOmNbqDWZgeBRSmAEhCM2c,304
|
|
737
|
+
wbcore/contrib/notifications/backends/console/__init__.py,sha256=vgrN2iIcVZfFSRJ2A5ltDQYOCK0DCAkt79JU4ZSfwTQ,42
|
|
738
|
+
wbcore/contrib/notifications/backends/console/backends.py,sha256=3oCasfFwlSvW6KMFWgI6mTTwTS8e60Xi8Kb831hp4tk,765
|
|
739
|
+
wbcore/contrib/notifications/backends/firebase/__init__.py,sha256=vgrN2iIcVZfFSRJ2A5ltDQYOCK0DCAkt79JU4ZSfwTQ,42
|
|
740
|
+
wbcore/contrib/notifications/backends/firebase/backends.py,sha256=9vKesj_iupmDCgPLnayfE0gW0Rl7xyoUVZBhyN2hB2k,4336
|
|
741
|
+
wbcore/contrib/notifications/factories/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
742
|
+
wbcore/contrib/notifications/factories/notification_types.py,sha256=s2R4M6FSeIt36E8Zc6Zg9KFUS3Kg1r6G5uEzy2IbhMM,706
|
|
743
|
+
wbcore/contrib/notifications/factories/notifications.py,sha256=QOO0Wp0x2Ij3YZQS6LlWMawbWtiy8yfUBk8vK6NWGok,547
|
|
744
|
+
wbcore/contrib/notifications/factories/tokens.py,sha256=_L82yARrWkTEManCJzu3HLmUprXcsYLA471Om1FRcpo,458
|
|
745
|
+
wbcore/contrib/notifications/locale/de/LC_MESSAGES/django.po,sha256=GOonziYXSipF8wMKT2QAo6V1IKMMZDe2e0-iDGpB7W0,2111
|
|
746
|
+
wbcore/contrib/notifications/locale/de/LC_MESSAGES/django.po.translated,sha256=U_ybUKrzfqWsy6bEb1SwFImXRT7w2GMVE9bvhIdGqKY,2088
|
|
747
|
+
wbcore/contrib/notifications/locale/en/LC_MESSAGES/django.po,sha256=MTEP0oXa7WSqf4y_osn6qnFsUdiiXAN9cI1SdakUPTg,1678
|
|
748
|
+
wbcore/contrib/notifications/locale/fr/LC_MESSAGES/django.po,sha256=GktIoVQiIj5ypXuSYl1fgq274tNVJU84-xInj5FZ0zo,1779
|
|
749
|
+
wbcore/contrib/notifications/migrations/0001_initial.py,sha256=7OKlC4ntOE7isSAY7IHd437XZNepZb25Yj6eEi_L-kI,4832
|
|
750
|
+
wbcore/contrib/notifications/migrations/0002_notificationusertoken_unique_user_token_device.py,sha256=itVmm02meTWqYigcsrhKQMCxN_it9_740d516aK1JOQ,470
|
|
751
|
+
wbcore/contrib/notifications/migrations/0003_notificationusertoken_updated.py,sha256=WHsxV8yPXo52UMI-_SDbXmKGg9x70bxUojaGuYDdCvg,437
|
|
752
|
+
wbcore/contrib/notifications/migrations/0004_alter_notification_body.py,sha256=xmPUv6DSdUBUb1Wv9522_i34fiq9sjYr1Z3iKa5A-70,414
|
|
753
|
+
wbcore/contrib/notifications/migrations/0005_alter_notification_endpoint.py,sha256=2HWosAznyK2qaP8wjz7rJpx5zvnhgqfYSi-Ro47F7r4,429
|
|
754
|
+
wbcore/contrib/notifications/migrations/0006_notification_created.py,sha256=2trDtqhhh6Nv5aCCZdan4bTahwtMoONe3hYrQ4qcZXs,748
|
|
755
|
+
wbcore/contrib/notifications/migrations/0007_notificationtype_resource_button_label.py,sha256=oSVy8y9uQMrw2BGCNKy6WhaeMali69yuHGgfX1HXyyw,480
|
|
756
|
+
wbcore/contrib/notifications/migrations/0008_notificationtype_is_lock.py,sha256=7uMgkxo7AcLQrvTR2oiYyrCpAcY7NZnp9vcd1rmi7sc,425
|
|
757
|
+
wbcore/contrib/notifications/migrations/0009_alter_notificationtypesetting_options_and_more.py,sha256=yjkAbfbZMHjJ_DLBHXg792AYzeOlLKyp-sAuVt-IpNI,1311
|
|
758
|
+
wbcore/contrib/notifications/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
759
|
+
wbcore/contrib/notifications/models/__init__.py,sha256=l7E4YjFreG6YeBCjcYJrK1Zn2vfPiBpF6bbfIb_5VM4,156
|
|
760
|
+
wbcore/contrib/notifications/models/notification_types.py,sha256=Zmx_t6v76mlp-0b-ecICpO4MnhVfr-gVjenpOLbQgV8,6056
|
|
761
|
+
wbcore/contrib/notifications/models/notifications.py,sha256=hrSr0Gay4TswocsRx_x4MBjYVeErx05lg1Pu7Rwia3k,2696
|
|
762
|
+
wbcore/contrib/notifications/models/tokens.py,sha256=S5NBvdwsHGwcJVJk_YW9g6YLPBXAKPiRZgRY1dVomv4,1544
|
|
763
|
+
wbcore/contrib/notifications/release_notes/1_0_0.md,sha256=pyuuGK8zEp7sbPchnpXyPngwJ9-qvrm0dJh3P2DJGIg,168
|
|
764
|
+
wbcore/contrib/notifications/release_notes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
765
|
+
wbcore/contrib/notifications/serializers/__init__.py,sha256=VTZMTbvPTO1A6gI30qSVXFzfQjrQtGt7Rr0be7swy8A,181
|
|
766
|
+
wbcore/contrib/notifications/serializers/notification_types.py,sha256=2m4Tfq-9HHmIFUwCa0JFmHWSMHI4K1r7rrMc0IYUu4k,1548
|
|
767
|
+
wbcore/contrib/notifications/serializers/notifications.py,sha256=tNMIIYzSJYwmxF2xrkWJt66uMbN7OfMO_yXvuxRzn10,1072
|
|
768
|
+
wbcore/contrib/notifications/static/notifications/service-worker.js,sha256=4_yl6qd0ituPK5KxFIyYXs6zXOIc_Y4wtzXKzWkSnqw,4926
|
|
769
|
+
wbcore/contrib/notifications/templates/notifications/notification_template.html,sha256=k-o9ieU6z6c0SKAw43_iLEleJTIZK43Y8jrRCwbKPCc,1441
|
|
770
|
+
wbcore/contrib/notifications/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
771
|
+
wbcore/contrib/notifications/tests/conftest.py,sha256=QthEmk6WnvMsvo9Rdva7RGGT8grNlGvSLdD9Ggj4480,1486
|
|
772
|
+
wbcore/contrib/notifications/tests/test_configs.py,sha256=I9rYEKXe0zLAOu8CrF5NzKQ7EYXj4qJUywT27Uj8fr0,259
|
|
773
|
+
wbcore/contrib/notifications/tests/test_tasks.py,sha256=d8EtXHNPZFU_JwTiVDqpdjBsxbZuRZ-NruEuaqt306M,2338
|
|
774
|
+
wbcore/contrib/notifications/tests/test_utils.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
775
|
+
wbcore/contrib/notifications/tests/test_backends/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
776
|
+
wbcore/contrib/notifications/tests/test_backends/test_firebase.py,sha256=RoC9fbj5OWhW_jn2_ZHVMG-t2aYYl3IKH98fCHXFZW8,3804
|
|
777
|
+
wbcore/contrib/notifications/tests/test_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
778
|
+
wbcore/contrib/notifications/tests/test_models/test_notification_types.py,sha256=t4Cozw2hgDoGc9uC5elX7q2kK5UWY-l4bMU4Fo6L2fs,3428
|
|
779
|
+
wbcore/contrib/notifications/tests/test_models/test_notifications.py,sha256=N98NHI-9LvZi2YA1ruawc6NEfS06iO4fQrlux1PS50I,2056
|
|
780
|
+
wbcore/contrib/notifications/tests/test_models/test_tokens.py,sha256=8U9WBmHBLMZcNig_doDdByIFYH2V4ccYwnPsgpw9bIc,1301
|
|
781
|
+
wbcore/contrib/notifications/tests/test_serializers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
782
|
+
wbcore/contrib/notifications/tests/test_serializers/test_notification_types.py,sha256=TIiMdwaXWXRSzeFNKenMAR7VT0fX_HNdxnO9nsTRr6w,2536
|
|
783
|
+
wbcore/contrib/notifications/tests/test_serializers/test_notifications.py,sha256=kW4uTL8Vr_gwo-zAZv4q_v3BBTAmyUDvUv0SzODB2YI,940
|
|
784
|
+
wbcore/contrib/notifications/tests/test_viewsets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
785
|
+
wbcore/contrib/notifications/tests/test_viewsets/test_notification_types.py,sha256=GSmHRc1tUn5Z6M872ZTzaKvgzh7ManfLdYv2BkjN7oc,5851
|
|
786
|
+
wbcore/contrib/notifications/tests/test_viewsets/test_notifications.py,sha256=cuY6k_LJfA4AHLLXzm9bYhjvuCqS-4VKOByUVUjlDTw,6448
|
|
787
|
+
wbcore/contrib/notifications/viewsets/__init__.py,sha256=LvuSAnXRTv5tixtnLaLnx1OFomQaKumL5fo_1EtfBzw,172
|
|
788
|
+
wbcore/contrib/notifications/viewsets/menus.py,sha256=NvhqCjGwpq21DRhvNJKCcv2MAvHIyxq38JLrsV3zR8s,534
|
|
789
|
+
wbcore/contrib/notifications/viewsets/notification_types.py,sha256=FrOxSiQzuO6zC6vQl-C4UZBjvf6J-xyZkCGzueKA_hk,1900
|
|
790
|
+
wbcore/contrib/notifications/viewsets/notifications.py,sha256=0Y5VJZgu8rwOnYNWDTAft1prWCVfXD9Up5RE2EV9HYE,2254
|
|
791
|
+
wbcore/contrib/notifications/viewsets/configs/notification_types.py,sha256=8x0xmT6brlXh5fiI689fMhtKMjynETD0Xlm1QVYUlD8,1893
|
|
792
|
+
wbcore/contrib/notifications/viewsets/configs/notifications.py,sha256=KHy4V5R3D8AjZp1No7EasjeR-zPzks8eO-2PjlIxMuo,3605
|
|
793
|
+
wbcore/contrib/pandas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
794
|
+
wbcore/contrib/pandas/fields.py,sha256=JtDxAolmiMYj_-HJqLVX5G7iN2jDm-oh4nbGeteydeY,4293
|
|
795
|
+
wbcore/contrib/pandas/filters.py,sha256=Pi5h3JB9Ugqx-xZ82X8MUIfRHwrY5locBUQH7GDg60w,4821
|
|
796
|
+
wbcore/contrib/pandas/filterset.py,sha256=uoeW54GT-rhgtUedJzq2QjKfpwRdmNFW7C059fm30lg,1036
|
|
797
|
+
wbcore/contrib/pandas/metadata.py,sha256=EIKp94TDtdtCRELl3zWTLU37FzNX-EpVeMgISUgI-FY,772
|
|
798
|
+
wbcore/contrib/pandas/utils.py,sha256=AxxGI4ue4TjEezvigD3zLaAlRAfnL7Mib-eSj48s_DM,4998
|
|
799
|
+
wbcore/contrib/pandas/views.py,sha256=sZYY23bpegoE7Cd3whWi1A4YFn_aq_3tqbr-EaJqi4Q,6427
|
|
800
|
+
wbcore/contrib/pandas/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
801
|
+
wbcore/contrib/pandas/tests/test_base.py,sha256=PuIOm9JDUFFM3oQCtBvvaU5ozniwGlla6bglIRZM0Xw,833
|
|
802
|
+
wbcore/contrib/pandas/tests/test_views.py,sha256=PuIOm9JDUFFM3oQCtBvvaU5ozniwGlla6bglIRZM0Xw,833
|
|
803
|
+
wbcore/contrib/pandas/tests/test_fields/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
804
|
+
wbcore/contrib/pandas/tests/test_fields/test_number_fields.py,sha256=YIWFX67qqBFC_qrbMb826wV05yilpsbizh0ZvzVOnME,473
|
|
805
|
+
wbcore/contrib/pandas/tests/test_filters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
806
|
+
wbcore/contrib/pandas/tests/test_filters/test_pandas.py,sha256=YMdh3kAjuAZyL4iGe8jjpcDitXmunSkSzB-w3-1rKbI,3757
|
|
807
|
+
wbcore/contrib/tags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
808
|
+
wbcore/contrib/tags/admin.py,sha256=gIgCl7P4_d2x5FK1Gs5dYwWISY7beWclwQXHRkoZhrI,433
|
|
809
|
+
wbcore/contrib/tags/apps.py,sha256=DSaqTCfj8DjVBHQdQtrRQvrw-wF_igOE9DUvMv47EK4,234
|
|
810
|
+
wbcore/contrib/tags/factories.py,sha256=H1GgkJ0S7X9v8DHZ-Bt5L-VjMBCpbnTHkJHr26Uapxs,618
|
|
811
|
+
wbcore/contrib/tags/filters.py,sha256=-oU7yOyZt4ExYgqPqxdCqjRkZ7N8fAt5x5waSnBHyRk,1448
|
|
812
|
+
wbcore/contrib/tags/serializers.py,sha256=H5pxHrXd7nOiZU67zIKgp3_HCb5ARyluywpnb4N1zTU,2834
|
|
813
|
+
wbcore/contrib/tags/signals.py,sha256=4WDNS2wL-JqSQPaSNDUDnxUEUMmNIs5lnJ7S1H05ydw,726
|
|
814
|
+
wbcore/contrib/tags/urls.py,sha256=y_QatHkx9hyIUfdYnBX4zfMQkKtTVdztQ8FQmpDV4cE,727
|
|
815
|
+
wbcore/contrib/tags/migrations/0001_initial.py,sha256=6dswzuzzubfzx5cJ69Njz7ZtDBCf0UwAbUrctTsNE00,2301
|
|
816
|
+
wbcore/contrib/tags/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
817
|
+
wbcore/contrib/tags/models/__init__.py,sha256=o5Oqc0SJ5kZWQ466Z5Wgj8J9Ppsv1E3JcuLHWM5p9Zw,66
|
|
818
|
+
wbcore/contrib/tags/models/mixins.py,sha256=B3UhUsU3veuGsh_cx6-VASxvUMVPKanaOknkYp0SmFg,950
|
|
819
|
+
wbcore/contrib/tags/models/tags.py,sha256=IV1dmqRKLD9Ka7yvqnPmmX8rPBn0HfW8Xokb8sdmRgo,3237
|
|
820
|
+
wbcore/contrib/tags/release_notes/1_0_0.md,sha256=jG3JupsX-qW0P8UN2ktJJce_7mCMCc1fAL-nbiCJJnE,160
|
|
821
|
+
wbcore/contrib/tags/release_notes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
822
|
+
wbcore/contrib/tags/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
823
|
+
wbcore/contrib/tags/tests/conftest.py,sha256=V4H8IpNANaDnkKSP6cfFgFBDyQnJQ5jd-LqQMqpdovA,176
|
|
824
|
+
wbcore/contrib/tags/tests/tests.py,sha256=dkXeexwKGHUtt-xdfIJQZtPTrIxxDnLxN_-lmiiGZ3k,4820
|
|
825
|
+
wbcore/contrib/tags/viewsets/__init__.py,sha256=UQhHzJ0M40FvcWbLAvlHXDckGRAvKlQbQKbPEPUxWy4,265
|
|
826
|
+
wbcore/contrib/tags/viewsets/display.py,sha256=6No-3L0AMUllP_9snpE9ythWZ44korn0EZUB9v5w3Yk,1819
|
|
827
|
+
wbcore/contrib/tags/viewsets/menu.py,sha256=ylZCbYmTufmrhedPhm3l16ehVbFdTgGsriHcq7_vKCw,510
|
|
828
|
+
wbcore/contrib/tags/viewsets/viewsets.py,sha256=HZq79A2YQ5znBExUQhpFXBuHGOBDQwbDaxbToqgBjxE,1621
|
|
829
|
+
wbcore/contrib/workflow/__init__.py,sha256=SXF1YcmNOCORa3wkTrg5GMuSZgYx3UqpwWIm2DPMey8,52
|
|
830
|
+
wbcore/contrib/workflow/apps.py,sha256=MOv3tb7XsMbVv_1t8MzJx58j1aCNFWvGuhhGWuSL8UA,1132
|
|
831
|
+
wbcore/contrib/workflow/configs.py,sha256=n0dkUP_Qp5hMsrg8UIf6cTmXb14N0UqMjzaKixdWafE,359
|
|
832
|
+
wbcore/contrib/workflow/decorators.py,sha256=reqbA9eLYQ53Jvt4T0JW9827J1_Uson_3OTTZLEVeoA,724
|
|
833
|
+
wbcore/contrib/workflow/dispatch.py,sha256=jUxWonxpMsSxZ98kYiv-HKu3BSRZK1kwPIRGGLCTz6w,1246
|
|
834
|
+
wbcore/contrib/workflow/sites.py,sha256=owhUSzQlDuyMp10iMHv3jLXSYcxWuTKuJR0D2qPNplw,1420
|
|
835
|
+
wbcore/contrib/workflow/urls.py,sha256=yTKOHj2A2suMsJIdm9S1OH_ct0pDum2zhxAUjRT1Lgc,4649
|
|
836
|
+
wbcore/contrib/workflow/utils.py,sha256=uITKaiCGgvAnatCaWXsqcXs0nY7xocKPeyWZdI9wuhE,475
|
|
837
|
+
wbcore/contrib/workflow/admin/__init__.py,sha256=Gmo_bRGEIza1S-eUqHOSywXBFOJfgDDLs_wvbJWbgeE,390
|
|
838
|
+
wbcore/contrib/workflow/admin/condition.py,sha256=kwz_NLXaaDh-_uYQxzR6XMuL13wbPwQ4PC3n67kQdCw,293
|
|
839
|
+
wbcore/contrib/workflow/admin/data.py,sha256=v9uoPFbq4Qac2FX83rT-u1TUTGl5Z7QaQMd2pdngkQw,422
|
|
840
|
+
wbcore/contrib/workflow/admin/display.py,sha256=4FZ7cbvOkIDSCi7Wg6WbQt_AtdjpvbJDGTwNA7su5XE,237
|
|
841
|
+
wbcore/contrib/workflow/admin/process.py,sha256=bBTIrKvqVfpCexsQK-ddV-Xo5CL9y0PqybUl6YPWbHw,769
|
|
842
|
+
wbcore/contrib/workflow/admin/step.py,sha256=6w-eunYq183zAAf3tguG3WHl7FcyIPQ2Y_L3sP9ENLE,1899
|
|
843
|
+
wbcore/contrib/workflow/admin/transition.py,sha256=ogD3si2leTR74KX-Xe5AwkF6AFD2jsoGBRVCjsT16mk,255
|
|
844
|
+
wbcore/contrib/workflow/admin/workflow.py,sha256=WYP4ruLt1Cwtc5XAXOWoeIpOqfLXIt_zPKurqtQMzws,292
|
|
845
|
+
wbcore/contrib/workflow/factories/__init__.py,sha256=VfbPaeOsyiZcBF-UW1VhmtFdD6GkQJ94_-4XSxiQcck,506
|
|
846
|
+
wbcore/contrib/workflow/factories/condition.py,sha256=LpYNUvihM-asb53Ii2AjUZX8RJZKUw5LMafV6XZ6xf0,601
|
|
847
|
+
wbcore/contrib/workflow/factories/data.py,sha256=bNd2GzwCX3W9ZCCS9Fh3sI0CwmmGY6kQJs0sLaxSYkg,740
|
|
848
|
+
wbcore/contrib/workflow/factories/display.py,sha256=yyIwdBUiXw4cKHEYpxqB03HUmvZnnlOWXxgbmpDE1eU,789
|
|
849
|
+
wbcore/contrib/workflow/factories/process.py,sha256=ZBYXIfr-ACz0_fXyyGElLGPKXype4QRzHUQrQg71gyw,2870
|
|
850
|
+
wbcore/contrib/workflow/factories/step.py,sha256=geMOK-qjfaUnAokPUmJqNIaB0cshQCOEulGJjDLTnm0,4105
|
|
851
|
+
wbcore/contrib/workflow/factories/transition.py,sha256=GXVIHQgWDPR3nOGxHTH46uz4L2Kk7lUdDYgJzh1UzDs,843
|
|
852
|
+
wbcore/contrib/workflow/factories/workflow.py,sha256=L2mHK8WAWwA-bdxtdEymKphZicdqob_JLevDwQSz3JY,701
|
|
853
|
+
wbcore/contrib/workflow/filters/__init__.py,sha256=gWOO90QO6euiyPJKRlxexQ3K4tiX9KZOVSDL68KMepo,561
|
|
854
|
+
wbcore/contrib/workflow/filters/condition.py,sha256=zABOCqj5G8D4xnPpGQtAHQ5iV8hEatSivh00eCfZiXI,854
|
|
855
|
+
wbcore/contrib/workflow/filters/data.py,sha256=cRHw_3wHrRnDp9zPd-5BMMSx2zajmz765J9fXQZt7iU,848
|
|
856
|
+
wbcore/contrib/workflow/filters/process.py,sha256=0ui8XFUd6SHMkvNEiwQyPb3G4wYLk4Nx8iek5H_NP00,5672
|
|
857
|
+
wbcore/contrib/workflow/filters/step.py,sha256=N5ZYeT91cOiXecBswuNoehVjXlDUzvgscH8IRAP5oSI,8076
|
|
858
|
+
wbcore/contrib/workflow/filters/transition.py,sha256=jsmOvSJlTiJGJx0seKrjWqK4Su50HaqeVidNqPr8h1c,1545
|
|
859
|
+
wbcore/contrib/workflow/filters/workflow.py,sha256=T2juRrlXoYLQ59gTfxPxJH0MR0NfQNxbUvM2XTzaTA4,1661
|
|
860
|
+
wbcore/contrib/workflow/fixtures/workflow.json,sha256=NMpa4iaHtsyU3Rqe8FFLH_OgHiSSYMtXg2KNRjVkqcY,14231
|
|
861
|
+
wbcore/contrib/workflow/locale/de/LC_MESSAGES/django.po,sha256=JIcFrVr_LOSc88ScQjnb3aIcbjeniGJ90ntOg7aLfac,38238
|
|
862
|
+
wbcore/contrib/workflow/locale/de/LC_MESSAGES/django.po.translated,sha256=irVA3umrkteEJ1VNCzxWuLrMRbik93vrz4fUPAy4ZB4,45227
|
|
863
|
+
wbcore/contrib/workflow/locale/en/LC_MESSAGES/django.po,sha256=BAuT8cKN4mqg0SKsM1n-1UCkoht3sZF7Scy9XZQTfns,30737
|
|
864
|
+
wbcore/contrib/workflow/locale/fr/LC_MESSAGES/django.po,sha256=e-W5wRaHDuvq9EiwYK9ZRfxARXIpR9YD8EffnWy6vS8,30871
|
|
865
|
+
wbcore/contrib/workflow/migrations/0001_initial.py,sha256=Tnurc49itIH2G9HOQfvNgS4hH11rD7JDbIWbFyeg7-Q,31000
|
|
866
|
+
wbcore/contrib/workflow/migrations/0002_alter_step_step_type.py,sha256=Q0LTfMdWbKVzBqIuY-cjIfS7CVpDYW4zz50gMm5B0Zc,921
|
|
867
|
+
wbcore/contrib/workflow/migrations/0003_alter_condition_attribute_name_and_more.py,sha256=x-sMfGGINh2w12b0taLKWXCIFdljkslpBxnp-K8ZR3Y,2784
|
|
868
|
+
wbcore/contrib/workflow/migrations/0004_alter_userstep_assignee_method.py,sha256=O29lAiEuncLJeUI6NtXzdeBIl5B4Zxnsf4PyXNeNgP0,823
|
|
869
|
+
wbcore/contrib/workflow/migrations/0005_alter_userstep_assignee_method.py,sha256=uJMW73Q6AhCeY-3ZuzRclbyeUu2AQczKdS61muB5IS0,464
|
|
870
|
+
wbcore/contrib/workflow/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
871
|
+
wbcore/contrib/workflow/models/__init__.py,sha256=CfTsEsrh6YChobIrcddQfxxw3g6nETEc7objf2mZC7s,402
|
|
872
|
+
wbcore/contrib/workflow/models/condition.py,sha256=Dwxz4t7qq3E1_PyT5e4r23bd6CbXkeD0oqi1IreEBw0,4990
|
|
873
|
+
wbcore/contrib/workflow/models/data.py,sha256=rmnZXjyj6merFmZLpneCwNzFczCelFQxF2YqD-sQT9Y,8501
|
|
874
|
+
wbcore/contrib/workflow/models/display.py,sha256=A09tKwOTwa5FUFhj7HEILI0q6X4eHvNDproXceusqe8,923
|
|
875
|
+
wbcore/contrib/workflow/models/process.py,sha256=DMm_NG9g68UomwjbOYCzNPh6PIF80GrDbG5oDdqfk_Y,8541
|
|
876
|
+
wbcore/contrib/workflow/models/step.py,sha256=xUWX6qzqSxe7aHJaxr_cNgVwIU3EI7Kz-WkNVw3z6ow,29109
|
|
877
|
+
wbcore/contrib/workflow/models/transition.py,sha256=b-1rZTA8rZmxRhAR7RDqkUT7W8DIwjlsKmscvYfmpIs,2344
|
|
878
|
+
wbcore/contrib/workflow/models/workflow.py,sha256=YqoSBtrpRPsRGDNxIhtbChT4yB27V42WKseOy9uroBQ,11690
|
|
879
|
+
wbcore/contrib/workflow/serializers/__init__.py,sha256=b7rERecOTkKCFPlR2ONncXkwvozHWsQYrx5SFkJ0ntU,1313
|
|
880
|
+
wbcore/contrib/workflow/serializers/condition.py,sha256=w4jKdhrijnRYSv1FKcZyJNFBxwho2dUJSy9PpwF5u7w,2454
|
|
881
|
+
wbcore/contrib/workflow/serializers/data.py,sha256=8NdMSJZrWd6GgTJFZyPpU-4Yv710Zcwsl6SrCgxy8Fg,5400
|
|
882
|
+
wbcore/contrib/workflow/serializers/display.py,sha256=iJiKTL6bEJpS0ntinNhbtfCThna5OcqMM_-9E4-6090,647
|
|
883
|
+
wbcore/contrib/workflow/serializers/process.py,sha256=zQD7MPSJrW_-FjCElDnshWFNXeQgMukn4hIz3nGrFCI,6349
|
|
884
|
+
wbcore/contrib/workflow/serializers/signals.py,sha256=S_qgqtYiTroocmCMKf_sMWAOI1Tk2OALATW12HczRUo,1184
|
|
885
|
+
wbcore/contrib/workflow/serializers/step.py,sha256=KU5J-3b4ydwjHMGiYFFYWUjUVxgn_p6SEBfD9ujwosU,14150
|
|
886
|
+
wbcore/contrib/workflow/serializers/transition.py,sha256=bEaC8UPP_x48w6248sHeNaloXS6d-R0pzn0ANT78XWU,3190
|
|
887
|
+
wbcore/contrib/workflow/serializers/workflow.py,sha256=-7MS9KaAbarn91Xh_-JirDTtYVhagcOtpdsbCWpOq5A,5031
|
|
888
|
+
wbcore/contrib/workflow/static/workflow/markdown/documentation/assignedprocessstep.md,sha256=Cv9M4bR2GrmXKVWoP5DZxVGDL-8AJAZUboPLyfNEHEw,1496
|
|
889
|
+
wbcore/contrib/workflow/static/workflow/markdown/documentation/condition.md,sha256=VmkMyDmHBXv7hDn6hxxSMEfbYgknzwIZU65KHWOKCNQ,1464
|
|
890
|
+
wbcore/contrib/workflow/static/workflow/markdown/documentation/decisionstep.md,sha256=ao6YoFMrGooX0iEMERnkJYGfPFgmFTMzPqmjGZm3m4A,1324
|
|
891
|
+
wbcore/contrib/workflow/static/workflow/markdown/documentation/emailstep.md,sha256=-YKrYJFBkqjy5_XWG_aXcGC-DWJVuLAyUG_uglYV-bs,1611
|
|
892
|
+
wbcore/contrib/workflow/static/workflow/markdown/documentation/finishstep.md,sha256=1LEYLR2J8IevuV-4ETvPOLEyx7AKZ02DGPgF_Ag3UW8,1415
|
|
893
|
+
wbcore/contrib/workflow/static/workflow/markdown/documentation/joinstep.md,sha256=sgK8Ah3ijSam2Evy6hYGM-rB3XRCf45qkATkaKwHfVE,1681
|
|
894
|
+
wbcore/contrib/workflow/static/workflow/markdown/documentation/process.md,sha256=EgStAd9735GWQtFdOi1tGPzYKSfTNSXZNKmlUgerBNg,1366
|
|
895
|
+
wbcore/contrib/workflow/static/workflow/markdown/documentation/processstep.md,sha256=9k9RbZhS37MZB0C9gsYuxF9rV4k63VZJeBkbDWgyneM,1722
|
|
896
|
+
wbcore/contrib/workflow/static/workflow/markdown/documentation/scriptstep.md,sha256=KseSRZGIuGqTyN3NMtAWkVh0x-TPUqqqUajkJcpQGjk,1475
|
|
897
|
+
wbcore/contrib/workflow/static/workflow/markdown/documentation/splitstep.md,sha256=p-2MTnvz5t5zZ8BSQ6ZU0rSHHuraMQlOQCxLyEpnt10,1295
|
|
898
|
+
wbcore/contrib/workflow/static/workflow/markdown/documentation/startstep.md,sha256=CLsLRQXZiEfiDFgl8wEX6-07kWYkcMlvjOsvHH8Jvx8,1084
|
|
899
|
+
wbcore/contrib/workflow/static/workflow/markdown/documentation/transition.md,sha256=-a82f0djfOTcZ8mJLXjLkxXFXFMt0wkSOF99Tdjg2Lg,936
|
|
900
|
+
wbcore/contrib/workflow/static/workflow/markdown/documentation/userstep.md,sha256=2kduSL_4gdSPuNFfktNiyjofFTcCEQQ2oOUk0ZBIzZ4,1745
|
|
901
|
+
wbcore/contrib/workflow/static/workflow/markdown/documentation/workflow.md,sha256=CS1iyjdQX5N3Fbp8QYnrrPq2QNgu_kaCu9aLLq7pJ3M,43578
|
|
902
|
+
wbcore/contrib/workflow/templates/Test_Templates.txt,sha256=TPyYY95ZVlOPsdH_XPaDgz11RpB6tZH-PUu6BKutJhE,764
|
|
903
|
+
wbcore/contrib/workflow/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
904
|
+
wbcore/contrib/workflow/tests/conftest.py,sha256=5jS-R4lpLOu0VhNENaKPI1O_62qbltHzcSowRHN3Md0,6471
|
|
905
|
+
wbcore/contrib/workflow/tests/test_configs.py,sha256=LIGgRTM9l6Fj-RHLG08fM9OdutJVEE63x-0XZ2M7oWQ,205
|
|
906
|
+
wbcore/contrib/workflow/tests/test_dispatch.py,sha256=xW8EHv6yV88893R1O41ytEIaC_GY0GFLGYsdOVOF5-w,4133
|
|
907
|
+
wbcore/contrib/workflow/tests/test_displays.py,sha256=Do1lD5OvnMTEW0bnjI7MV0BjKToaMUB2knvyncyfQw4,1526
|
|
908
|
+
wbcore/contrib/workflow/tests/test_filters.py,sha256=tHDn1DxAIgLlcWIDQPV_vFB6FG3VGbfCfOg1KFybQPo,4146
|
|
909
|
+
wbcore/contrib/workflow/tests/test_serializers.py,sha256=2RmFqozOhhGICfD4BkXkE4_JQgq3vW3dDrmp--vO1uM,7761
|
|
910
|
+
wbcore/contrib/workflow/tests/test_viewsets.py,sha256=ODIMaD1B0WH8IzGAhTS3DuFNtl1NlCJKpg08CAP9yL0,11204
|
|
911
|
+
wbcore/contrib/workflow/tests/test_workflow_assignees.py,sha256=1QN7fsZLV8VKFns_2B_xdCKh9wPM60RmlZt6Rq5MUso,10396
|
|
912
|
+
wbcore/contrib/workflow/tests/test_models/test_condition.py,sha256=6sSW1gddFWSRBO3quwvyltPzL9JDH4vHlfFV1vBBh_w,4717
|
|
913
|
+
wbcore/contrib/workflow/tests/test_models/test_data.py,sha256=4WrmvopH3QErWCOSvjsnfvCOOnCyaQ_KKmAAPSJy3CY,5369
|
|
914
|
+
wbcore/contrib/workflow/tests/test_models/test_process.py,sha256=cJCcWGXbcKSK34BtcNVg56nQXMogAtKeufbPf82Z8yw,4580
|
|
915
|
+
wbcore/contrib/workflow/tests/test_models/test_transition.py,sha256=IBsK9sRp0pCVO4t00C7Z0kjmhhSHNPOpQ4YxgDrhltg,5106
|
|
916
|
+
wbcore/contrib/workflow/tests/test_models/test_workflow.py,sha256=J8AvJTjz1EcBMZz7_u73a-tzUqF5L9scFk744ph9dxQ,19561
|
|
917
|
+
wbcore/contrib/workflow/tests/test_models/step/test_decision_step.py,sha256=ajr5jK9Y9-VJzPOsrx8e6irW8IQ5kASkMYJmj8qyg60,3977
|
|
918
|
+
wbcore/contrib/workflow/tests/test_models/step/test_email_step.py,sha256=kUzXJmjfoLCL3ZUktXcZ0ii1HsuFm_-aItgZwlKaN0s,3873
|
|
919
|
+
wbcore/contrib/workflow/tests/test_models/step/test_finish_step.py,sha256=-4h164N2DqYeesGzF_nIW3E6x4QF_pb-Rs_5iKNx2lE,6586
|
|
920
|
+
wbcore/contrib/workflow/tests/test_models/step/test_join_step.py,sha256=YDQKx3AsX01iMkcj3nHgoWL9UHTsVUdGVw0A8Lt5DfA,4316
|
|
921
|
+
wbcore/contrib/workflow/tests/test_models/step/test_script_step.py,sha256=--S5YIC1LTWsDFrU3b3Yh8f-Nv8fRmmp2haSqK1qsSQ,1041
|
|
922
|
+
wbcore/contrib/workflow/tests/test_models/step/test_split_step.py,sha256=A4GvrDkeRgYkImkfGrgbRZJl6nn8ZAEjsxOxJzz40sk,1743
|
|
923
|
+
wbcore/contrib/workflow/tests/test_models/step/test_step.py,sha256=DTpvVrpVq7PMPdIVLdqZvAYeJwCB-3CxhLsJSlmjtw0,34594
|
|
924
|
+
wbcore/contrib/workflow/tests/test_models/step/test_user_step.py,sha256=lKajp_SIP-tNQTislIIcrygFepOi_l7Kc63Wby7HYyk,11906
|
|
925
|
+
wbcore/contrib/workflow/viewsets/__init__.py,sha256=PGsFZrKbNTXJF-VrrjtN3ItA6OIn1sW-ypcyWrQEX-g,557
|
|
926
|
+
wbcore/contrib/workflow/viewsets/condition.py,sha256=8BWj-nTp8uACx2BHmwXP4hJT8dvMH2DNMtIrSXmvMpc,1399
|
|
927
|
+
wbcore/contrib/workflow/viewsets/data.py,sha256=YuR_0Qz9ByEacAhO3cLtYjoN0KbUV8zmFhKd6QhTy0o,1249
|
|
928
|
+
wbcore/contrib/workflow/viewsets/process.py,sha256=IkkTtSEqqP9A4CD-S-cytWRBoc1eRjRNpehDBn3yOgY,6079
|
|
929
|
+
wbcore/contrib/workflow/viewsets/step.py,sha256=FwCYlmNDRQ29w2kt-NBggXuWFfCmKzpoaMX0v8X0LCw,7365
|
|
930
|
+
wbcore/contrib/workflow/viewsets/transition.py,sha256=Srn5TBWEEe6i3N6lhLcg_phL9RoX2zkn__bOP_0alrw,2453
|
|
931
|
+
wbcore/contrib/workflow/viewsets/workflow.py,sha256=D_eGqT3F9pH2UQbGNAeDxrEU-kRjpjvYCgf1W5PWhEU,1625
|
|
932
|
+
wbcore/contrib/workflow/viewsets/buttons/__init__.py,sha256=gu_8BxVRxTw4s5DnVPr14CQBn27EVa7PlDM--7fSmlw,35
|
|
933
|
+
wbcore/contrib/workflow/viewsets/buttons/step.py,sha256=2U6_L2axRr1tKU148UAvNiAkQpn8mWyZEo-MIfXpEoA,3514
|
|
934
|
+
wbcore/contrib/workflow/viewsets/display/__init__.py,sha256=qbQHtmFtJ0BVIH8BH05X7SAqUbdaYf6wcK-YFXQIcWg,506
|
|
935
|
+
wbcore/contrib/workflow/viewsets/display/condition.py,sha256=H32z902JdmTbCocMt1S_4BY3gU0zHf-6dwvXHhZ3rYQ,1741
|
|
936
|
+
wbcore/contrib/workflow/viewsets/display/data.py,sha256=AVmCj3TTbOoM9zfqtR6l-iwA4lkC-uJ0_sx61AXy0xQ,1697
|
|
937
|
+
wbcore/contrib/workflow/viewsets/display/process.py,sha256=vPejzTq_t1uo6wu0tCAD0jgv8llaxU7rKjaZQ3QzQqk,7338
|
|
938
|
+
wbcore/contrib/workflow/viewsets/display/step.py,sha256=kSB1hC61-2dVRfyQcrGONm-y0sTH1MfM3zJ0j4GlwFU,15093
|
|
939
|
+
wbcore/contrib/workflow/viewsets/display/transition.py,sha256=WEEZ_q0KbAzxBb0FNSthyAfRo2mXmi4UBZQKLhGhkAw,2700
|
|
940
|
+
wbcore/contrib/workflow/viewsets/display/workflow.py,sha256=AB6eNP4M-WJcbaPx-N6GagRaSK03W9ct3olqq9uvV_s,6443
|
|
941
|
+
wbcore/contrib/workflow/viewsets/endpoints/__init__.py,sha256=f_-togKV1gNpbG_NNrmk1RNZ9mm_nsgKu6v5wCNOalA,271
|
|
942
|
+
wbcore/contrib/workflow/viewsets/endpoints/condition.py,sha256=TyO8pVsmTpU-UMeJu5Z0iSIttT1nu4TdjsaqL9afUuI,378
|
|
943
|
+
wbcore/contrib/workflow/viewsets/endpoints/data.py,sha256=LJSacfVxYxYZh4y8dLm4qbXlVh0oT0Q43VIGda0R2Sw,365
|
|
944
|
+
wbcore/contrib/workflow/viewsets/endpoints/process.py,sha256=a9ifyHJAJluOzwR-f9H7FeAS3OoOmlu8qz6Zv1_o6Vc,349
|
|
945
|
+
wbcore/contrib/workflow/viewsets/endpoints/step.py,sha256=_h0lIaACyqwtBdbGaWZhkHCiOH3zQXtvtL_iNUsYrGE,750
|
|
946
|
+
wbcore/contrib/workflow/viewsets/endpoints/transition.py,sha256=dPjR2w8zQZe4ZvReUuT5g3iWzwu0DjWh1Lrd0F4aLoo,1043
|
|
947
|
+
wbcore/contrib/workflow/viewsets/menu/__init__.py,sha256=d2BGaVT0ImRyMPYRiFMWRgOFM3cvyL9j0h6TXSvDtYw,435
|
|
948
|
+
wbcore/contrib/workflow/viewsets/menu/condition.py,sha256=a8T9nDiQ5IXNXg5vxKb_WQs1ccNiSN4MiTqA9N7Ko28,672
|
|
949
|
+
wbcore/contrib/workflow/viewsets/menu/data.py,sha256=GhJ0eQEcIqnU6hLprqjP0ozWsvaifOD_BSX9XZedI2s,637
|
|
950
|
+
wbcore/contrib/workflow/viewsets/menu/process.py,sha256=1b39urJGxDR-EHOmHdJCJg5KPDB2TwICCiF3cAdf0dE,655
|
|
951
|
+
wbcore/contrib/workflow/viewsets/menu/step.py,sha256=rmz3xjhAW195eUWwX3UEKBwbTpJzAayAhtDugUUCPVA,4300
|
|
952
|
+
wbcore/contrib/workflow/viewsets/menu/transition.py,sha256=cnDdLrOWC30RhoykDTOHSlQFLiPnmho6jT_o8bCtTEY,679
|
|
953
|
+
wbcore/contrib/workflow/viewsets/menu/workflow.py,sha256=wY6P0q9gSErWk4r6ONEqh3hrwrVjBnTbxR_nRC9Rylo,665
|
|
954
|
+
wbcore/contrib/workflow/viewsets/titles/__init__.py,sha256=cXCyCoOQDz91Ztg_PFn-gswwNhS93z2SdntpDPUxUh8,516
|
|
955
|
+
wbcore/contrib/workflow/viewsets/titles/condition.py,sha256=ZsBZmN0gl60b3bkZbxuqJZ_szCV4JTNNNxkS0tvq5k0,353
|
|
956
|
+
wbcore/contrib/workflow/viewsets/titles/data.py,sha256=ZadgweqTTMBO0wkXEwQNLgkPyP5NurdG5_-flNFPwL4,332
|
|
957
|
+
wbcore/contrib/workflow/viewsets/titles/process.py,sha256=TzXTSMadYNqnuXy-Eu9-hrZZeAT1_SQTHgQgAxj4XIs,666
|
|
958
|
+
wbcore/contrib/workflow/viewsets/titles/step.py,sha256=jcfwrTsXLVdoDg8ujXm1X1k8R3zHCrziJyhX-OEIkmQ,2313
|
|
959
|
+
wbcore/contrib/workflow/viewsets/titles/transition.py,sha256=_2pwlLQ1z4MOAEcvjFlaCOrYAR6NByvTgDX2LK1Jqx8,357
|
|
960
|
+
wbcore/contrib/workflow/viewsets/titles/workflow.py,sha256=HNLCNloXuufXIMbowHM-f9OvJ9yssEUVRdwjT6aM_m8,349
|
|
961
|
+
wbcore/contrib/workflow/workflows/__init__.py,sha256=NsbJ8OKI_atG2-Qv3bMXqpHgyiJliOUE_JUZsaGt1as,25
|
|
962
|
+
wbcore/contrib/workflow/workflows/assignees.py,sha256=S2n_ympGyczglrWiO2TDKT2XW8My8CrcXP1d0YUIvgo,3848
|
|
963
|
+
wbcore/crontab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
964
|
+
wbcore/crontab/serializers.py,sha256=saknQtXrPU2uSbySFKBOcjz854cOmZtCCY_rHab0VPs,813
|
|
965
|
+
wbcore/crontab/viewsets.py,sha256=fMtaAU3P4bDRAygoCqHFm0u73dMCB52Dv1ar0Mz7mkM,335
|
|
966
|
+
wbcore/docs/__init__.py,sha256=znrk4gax10cQpqgePg_ZYdz9ZAENE365T5W09sg-vRw,669
|
|
967
|
+
wbcore/docs/orderable.md,sha256=lJYGpZACSsbGTgADpXfOHdBU3GXbsrE9OnlXIV9IHEY,2429
|
|
968
|
+
wbcore/docs/reparent.md,sha256=_pWHAuRwSQZRcvRxa7tsNKVdRP4Nj6O0Zdbwk9AsB9Q,839
|
|
969
|
+
wbcore/filters/__init__.py,sha256=I4NntVOrIgMTPh49Ek5K6J6jEGR6Y8YR_TEVtNOJunw,491
|
|
970
|
+
wbcore/filters/backends.py,sha256=7XX5LcFrAFE5jvFj5qSjww4VMux8aKRlcQKmZxdIiKY,730
|
|
971
|
+
wbcore/filters/defaults.py,sha256=poSD8Ww2NumwYjZ01zS0iBsNCmv6Bee1z3bDSYdX17A,1988
|
|
972
|
+
wbcore/filters/filterset.py,sha256=TTk4mQq9DFCXdyzMq3Ig6e5uIbmjsr4HT2kswOgiuPc,11775
|
|
973
|
+
wbcore/filters/lookups.py,sha256=IYuQqEcYutiXk9UpzY3qKSCaCR2vyllB0RXBj98o8Ao,1186
|
|
974
|
+
wbcore/filters/mixins.py,sha256=YIy2SEOtDjUVb7oePiC5oPjQEIdiwym02BHAyDkdep4,4495
|
|
975
|
+
wbcore/filters/utils.py,sha256=wSs0g7mKF6n_ziSEDItfFYcuHwZTXyu78D6LHxzY2Bk,786
|
|
976
|
+
wbcore/filters/fields/__init__.py,sha256=ZucwBossNTlvcUfRullicg0ovghQEGO0jxY5eQ3UaEs,546
|
|
977
|
+
wbcore/filters/fields/booleans.py,sha256=6BrK3p1Bv_KIlVCeMOgJ7V8_P8tWQKBnxTOBOBSsGvE,175
|
|
978
|
+
wbcore/filters/fields/choices.py,sha256=cXjPtWTEb-GF0oQaYszdDs2XRHEeviwipjbmlptX9mc,2529
|
|
979
|
+
wbcore/filters/fields/content_type.py,sha256=OtIzgNrr3-jtiS7m1YWrO5LEQd4hOhaukWTmDrmhJtg,1484
|
|
980
|
+
wbcore/filters/fields/datetime.py,sha256=17IP-ZGkmH0M4juc68kk0IPoiW7xKTUOy_y8DebV_Ts,4342
|
|
981
|
+
wbcore/filters/fields/models.py,sha256=43MwNyWqIkxAYTopYnGrsDRv-te34DIaHYmI4TtYTBs,5203
|
|
982
|
+
wbcore/filters/fields/multiple_lookups.py,sha256=gATxmkosBkDNbs_BQUw-rkON6xF5-C5evItvT0OkjQg,616
|
|
983
|
+
wbcore/filters/fields/numbers.py,sha256=DRKDndzZwBvnzlLrMiijwoZ41px8B0xcYv23eFI64hw,1908
|
|
984
|
+
wbcore/filters/fields/text.py,sha256=KUKq2BBmAZhI243WUgII052nzU_PmS3ivAZnlibArrQ,166
|
|
985
|
+
wbcore/fsm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
986
|
+
wbcore/fsm/markdown_extensions.py,sha256=nhArdsPaFNuAfE-8xCmvm_PdKJDpXq4YLjDHLk6ryfM,998
|
|
987
|
+
wbcore/fsm/mixins.py,sha256=vW5Xp09tLaCwAWTYjapy2gOFrzR48MhjakEelKxJ3Fw,6226
|
|
988
|
+
wbcore/locale/de/LC_MESSAGES/django.po,sha256=cIVadkOVokzRgGEvCrAl_XLKHgINNJnuggWODwEAoiA,34242
|
|
989
|
+
wbcore/locale/de/LC_MESSAGES/django.po.translated,sha256=pK20Tq5MnpnUgD3F20DpreCXjZIwhvtHsSZBlqjDaK4,43866
|
|
990
|
+
wbcore/locale/en/LC_MESSAGES/django.po,sha256=85opdOBlbrGVzuQL3pORHTQcBR1hA0XF2Qx5vl60dOQ,32107
|
|
991
|
+
wbcore/locale/fr/LC_MESSAGES/django.po,sha256=n-JQfHUo0-DEgarN5lcOCWiTpSMBxnwfq1j_IFFwNeY,32202
|
|
992
|
+
wbcore/management/__init__.py,sha256=RXB_EGmmCZU6zwD0ys0jP5iUfhhNaPkSQAApLOJty2E,3023
|
|
993
|
+
wbcore/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
994
|
+
wbcore/management/commands/bootstrap.py,sha256=YEYhT6WK8XbFLOvBwlUYjoHvgnlXaoaeh11YMJ6i-w0,655
|
|
995
|
+
wbcore/management/commands/clean_obsolete_object.py,sha256=hJzOESZakdqmdNaKezflr8eAzKukuegBrHTUBaO1dao,785
|
|
996
|
+
wbcore/management/commands/handle_release_notes.py,sha256=95JZJBjPbuhN7Xo1WQznex_HrznF4E5l5cpTmw-UTjc,2441
|
|
997
|
+
wbcore/markdown/__init__.py,sha256=2Y8N9D9otcTuSq8wWfEzNMf_DCpSpxGCu-jNd-RXCUs,44
|
|
998
|
+
wbcore/markdown/admin.py,sha256=JChJqfTydB0HH2aZElZNOhStgFG59gquY94iyPtaWQw,232
|
|
999
|
+
wbcore/markdown/dynamic_preferences_registry.py,sha256=HSowJgni2TVUcFBbmN8soYCg9GeKeR8OwVxEnFGkE2c,658
|
|
1000
|
+
wbcore/markdown/models.py,sha256=m-flvJWmqLj2PgyOV0VKxDFqPSZ6A7_lQWtd49U6Z7I,1262
|
|
1001
|
+
wbcore/markdown/template.py,sha256=shRAEdHaHVlrM4cY5mKjwva9QBaJrvkJhYaR7gXISQE,1567
|
|
1002
|
+
wbcore/markdown/utils.py,sha256=vde3CzHEh6mwKL74AOYme7R3YnagY_4ShJyAsC2IiEo,1269
|
|
1003
|
+
wbcore/markdown/views.py,sha256=bJfakyHP0jANNNUfZihejTcdLN8tx82Cf52NPn1nOjs,1876
|
|
1004
|
+
wbcore/menus/__init__.py,sha256=pPtHc6xv3zJLwwoZglWV38ACQtnEPoNs1UY7XSSfaWc,89
|
|
1005
|
+
wbcore/menus/menus.py,sha256=ngZdsAkZEMnkvyj2anNnkL38guJTx56gfKhSBhePrBQ,3012
|
|
1006
|
+
wbcore/menus/registry.py,sha256=rszt3iAaDuxSabs3EeseX1xdVHUbN5w3e8wqGtGPWjs,815
|
|
1007
|
+
wbcore/menus/views.py,sha256=RZpbkDTUCzL14LdIuMTgUAxbbv3Va8AZsD6CTDp9m4w,1356
|
|
1008
|
+
wbcore/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1009
|
+
wbcore/metadata/exceptions.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1010
|
+
wbcore/metadata/metadata.py,sha256=Je-qxrTfZ6m_OZoqhlHlPZOyyT5RvDu4nTmu0o9N29A,1128
|
|
1011
|
+
wbcore/metadata/mixins.py,sha256=7Iz9R5Gqh53EdCQkvbAPM19WvpZ-P0Im4MPyyoflxvc,3745
|
|
1012
|
+
wbcore/metadata/utils.py,sha256=hpG6SPS1d3zajPlG5ExrliiVr94vegOsJuoqLLR7OE8,124
|
|
1013
|
+
wbcore/metadata/configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1014
|
+
wbcore/metadata/configs/base.py,sha256=jxOuuisAAEMjvdvQY_1WSruEaNR9onmXn7W6NN95ogw,2790
|
|
1015
|
+
wbcore/metadata/configs/documentations.py,sha256=Wv6vToaalOFkCY_KU8HOddpkfeMKsBoGlla_4LTbJ40,348
|
|
1016
|
+
wbcore/metadata/configs/endpoints.py,sha256=peGTXR53IpOYcm0kBqDwMuIxxjjLYHRhDv0XWt6-OYQ,7143
|
|
1017
|
+
wbcore/metadata/configs/fields.py,sha256=4R-C_wzz9R5BttzfiWH0MeCDF5_tkvJUGo8sk4XaWPI,1091
|
|
1018
|
+
wbcore/metadata/configs/filter_fields.py,sha256=1jZyZHU8rBse2P69xFFRAn8VitEdevz5bPeniMk0vKs,2000
|
|
1019
|
+
wbcore/metadata/configs/identifiers.py,sha256=4cntC5IarkENLrBnFf26uyfrZY3b4QDXtugvNc_VRhI,1025
|
|
1020
|
+
wbcore/metadata/configs/ordering_fields.py,sha256=9ww1zwCFfL6XKGxMI2RKCcMhRS-dkFi3pYbQVbuKN_A,878
|
|
1021
|
+
wbcore/metadata/configs/paginations.py,sha256=QsQ2-D4Co6CZSrv6euBKZcYQVFRRfd5Jr-Sgw0Ij_Uo,373
|
|
1022
|
+
wbcore/metadata/configs/preview.py,sha256=UDEJ39FCRVIsrlgw5NtNKfVTJuPodCRw90Iz_-jpCcI,1120
|
|
1023
|
+
wbcore/metadata/configs/primary_keys.py,sha256=MZSAHZpAOvVtd-zGkkcrZ88EzlGUL6ewOEo7IA7YEJ0,260
|
|
1024
|
+
wbcore/metadata/configs/search_fields.py,sha256=FOq3zk6jSPQ24m1QII0iV-eLTcD_Z4IPp8TnBjVdFXI,275
|
|
1025
|
+
wbcore/metadata/configs/titles.py,sha256=Iha24FKpL6BacGlN61-_O4f7v9meHwJDkG4W09PWi5s,1841
|
|
1026
|
+
wbcore/metadata/configs/window_types.py,sha256=RbUbUvid9qMIXZMI0sqLTanZcWCP-pmwm-_33z_3hQs,451
|
|
1027
|
+
wbcore/metadata/configs/buttons/__init__.py,sha256=s_FcAPwADxa8YE3gTbhbeqZhqBfoCZR3j4laLt7gpOo,205
|
|
1028
|
+
wbcore/metadata/configs/buttons/bases.py,sha256=rAw5Te9V5y6tCCKOTbZXz-uln0vT7io2oPV6QDn1Ijc,2823
|
|
1029
|
+
wbcore/metadata/configs/buttons/buttons.py,sha256=0dKPokHYMis_SZhFZ1gTHayFTMQk5nVAvyDetTNdQ6o,5033
|
|
1030
|
+
wbcore/metadata/configs/buttons/enums.py,sha256=vkJBfNFPTIIFvYrDGxrugqgRe22_KcqFRU39jo8ZvFw,1472
|
|
1031
|
+
wbcore/metadata/configs/buttons/metadata.py,sha256=OhSkW18R6B_uJrtcGjN8VEkNCPlXD2DxuYWCqZXQbD0,348
|
|
1032
|
+
wbcore/metadata/configs/buttons/view_config.py,sha256=31fFJFeV9iM24FQY7I6XaPthokJdCuzSeCBdAB1xGnE,5308
|
|
1033
|
+
wbcore/metadata/configs/display/__init__.py,sha256=K3CdAUuC-YbowUusZ9F6vGfepppSqE8cfvazczEGePo,272
|
|
1034
|
+
wbcore/metadata/configs/display/configs.py,sha256=T_jJaryQf7hMqgJ_m2b685ynBxTQgsb526Zw4maBcsI,654
|
|
1035
|
+
wbcore/metadata/configs/display/display.py,sha256=WszWJutDuE_95RBlIxj7FkR2WxGhRuQ4fUcwYmGlfY8,6236
|
|
1036
|
+
wbcore/metadata/configs/display/formatting.py,sha256=fjf-c0rcRrdloVZnRTVJCumeSAt9TT1L64qcv1Mf9dU,1571
|
|
1037
|
+
wbcore/metadata/configs/display/list_display.py,sha256=yeHHC1v6xN8cTt3u84i-nIbx5D2Xv1QKviNwSD9j1CM,9008
|
|
1038
|
+
wbcore/metadata/configs/display/models.py,sha256=AFGy0EZF9Fgsw-QfEEjTeuQO4uk6rVxQSAV1ZePwucE,998
|
|
1039
|
+
wbcore/metadata/configs/display/view_config.py,sha256=3GbaYnaY-JIIX3HpBEJBlML8SO82928r8OCRc_7aEtI,3312
|
|
1040
|
+
wbcore/metadata/configs/display/views.py,sha256=wT6hiq_IHJ_h-bG0zIij5NJz3k4xYNtcS-cZVbTm3uY,1598
|
|
1041
|
+
wbcore/metadata/configs/display/windows.py,sha256=LUWmpsWLuDYcqxzDdmd08PfEa4f1goJhMw4LrC28Lzc,686
|
|
1042
|
+
wbcore/metadata/configs/display/instance_display/__init__.py,sha256=a62DtIWnRJfvzOCIy6sop7S3w7FXyu-ryGqDxNWZFLE,449
|
|
1043
|
+
wbcore/metadata/configs/display/instance_display/display.py,sha256=YsHUSMERvQibA2g6gBCbht023K2WHWC7sZ4HFMpbRsk,1722
|
|
1044
|
+
wbcore/metadata/configs/display/instance_display/enums.py,sha256=I7Ul0UladH6FEAHhfHHmCf7GLQYicr-oQU5ecVJmAZU,106
|
|
1045
|
+
wbcore/metadata/configs/display/instance_display/operators.py,sha256=bMeHp1MZ2OvPMmQBfr0zZtXXiYDQJVdIbt_r_QHVSuo,383
|
|
1046
|
+
wbcore/metadata/configs/display/instance_display/pages.py,sha256=oVRE64cW7jfJwkCXnSP8WhPz8oDjAQ3uTGG4DTl6VBk,1343
|
|
1047
|
+
wbcore/metadata/configs/display/instance_display/shortcuts.py,sha256=Vnvl6E7JVQB5ST0AQ03NnLLByD-ZyqvoPTdnkWCDr_w,2688
|
|
1048
|
+
wbcore/metadata/configs/display/instance_display/signals.py,sha256=g7NTb1aTnlCkOwxIlGiG8_HwxSvbybeT7ZogzgjW-So,73
|
|
1049
|
+
wbcore/metadata/configs/display/instance_display/styles.py,sha256=I5YE_xjoqIDbLLY7MTTf-xiME2O5GCX7fDyVMrhBDro,1200
|
|
1050
|
+
wbcore/metadata/configs/display/instance_display/utils.py,sha256=cWPcRnpiKigDYW9MV1wG8YLrFKexK51JXWAlRYoSDwU,2562
|
|
1051
|
+
wbcore/metadata/configs/display/instance_display/layouts/__init__.py,sha256=jXYvMjKLewkyeB1dMcJNFJtjCTfJyR2dN7Uw4KIPaoo,86
|
|
1052
|
+
wbcore/metadata/configs/display/instance_display/layouts/inlines.py,sha256=xfcZ7dmas621izhRCr55w-EPFnDVu0Aqg_C1i_M-5xk,1928
|
|
1053
|
+
wbcore/metadata/configs/display/instance_display/layouts/layouts.py,sha256=3nY6M-4ZmE9labpY80wx_yPIqQmQw0_mjG5smmrujl8,3264
|
|
1054
|
+
wbcore/metadata/configs/display/instance_display/layouts/sections.py,sha256=yFo5i-41KJp733MoDlzonaXDylOn0pbBlwqd7late0A,1298
|
|
1055
|
+
wbcore/metadata/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1056
|
+
wbcore/metadata/tests/test_buttons.py,sha256=CxwzXS8rFW5N37GrkZl9AI2NyhMdlVCAETyPETe6fBc,6696
|
|
1057
|
+
wbcore/migrations/0001_initial_squashed_squashed_0010_preset_appliedpreset.py,sha256=6RxsuOPKfhSSox5DC0bwUrI-oR9bGPkSyI1zDv5juSM,16460
|
|
1058
|
+
wbcore/migrations/0011_genericmodel.py,sha256=w-SK0-EwQCbXtLyFz3V-rBY-hj8bw7_n0xe0NM2HF8U,588
|
|
1059
|
+
wbcore/migrations/0012_delete_notification.py,sha256=HM0oUd05bgpuupsO_oG7t-C3lXInpq_Sg1vcEIyfHd0,293
|
|
1060
|
+
wbcore/migrations/0013_delete_colorgradient.py,sha256=2dSI5TE6QgxZagPM_Tj2_VebVEJK4wAFC-iXbb_qqJk,394
|
|
1061
|
+
wbcore/migrations/0014_biguserobjectpermission_system.py,sha256=gp94sckRkv59IP908kf6RCgB-1nhep86OThER9wHOK8,1390
|
|
1062
|
+
wbcore/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1063
|
+
wbcore/models/__init__.py,sha256=Ukm6r1FTiPMwcXOmiTmW73aktzFmQicN7Cm7XISD8fg,309
|
|
1064
|
+
wbcore/models/base.py,sha256=VKsnRJReu8SInvpMLV7_3SImVE9StY5H0Fj_stckyz8,7205
|
|
1065
|
+
wbcore/models/fields.py,sha256=IsHaIzQ2GU_rC7AORdSF9IIc_XkXPkEK5rV0wnijRmU,984
|
|
1066
|
+
wbcore/models/orderable.py,sha256=3uxEHuixP-qeCp_s86JzYC-ENAqh1NIlNOilht1h9bM,171
|
|
1067
|
+
wbcore/pandas/__init__.py,sha256=nYHncIbSqUu8nV6_5dzVQomTFYrxPhS_Hivfh6yYcl0,1418
|
|
1068
|
+
wbcore/pandas/fields.py,sha256=_F-gATQs-MJewMVrK5ObNot3c8WYVX-HNn59Zeo8TwM,523
|
|
1069
|
+
wbcore/pandas/filterset.py,sha256=eWqp1tnR_FNORtdbquFa7XlvjXHozzSU3tBLEA2RlYY,289
|
|
1070
|
+
wbcore/pandas/utils.py,sha256=1MW00r9k0USDXeoUAdrWXtv691WP5y0Ymc6gn4Z6CR4,662
|
|
1071
|
+
wbcore/pandas/views.py,sha256=3R8WqcUc2RYF8FQPUw-L_tHId4Di7tvna012PjUxWlI,309
|
|
1072
|
+
wbcore/permissions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1073
|
+
wbcore/permissions/backend.py,sha256=pLK_Hpk_2O4pMXEnUkw_dDYG2Jagm4vK0ER9eZt80MY,1368
|
|
1074
|
+
wbcore/permissions/mixins.py,sha256=LfuFM-RcB83_-ChFPvwsoL5SbY4in7gEgaqDQ2LRyTQ,1795
|
|
1075
|
+
wbcore/permissions/permissions.py,sha256=cIj7NWhG5ws_4JHYOLYmlxQt72ygq_eAPBNWMG-wkgU,1801
|
|
1076
|
+
wbcore/permissions/registry.py,sha256=gC9YPjinpi_B3o-qFzBy4mAmavZWLfZF2aToqT6yD74,1100
|
|
1077
|
+
wbcore/permissions/shortcuts.py,sha256=xCtU-CCfW3bCHQG5H94SxrHDLm6TStsDpqKu7nDv188,1137
|
|
1078
|
+
wbcore/permissions/utils.py,sha256=Bn7Gj4kabzEwCdz-lnqtJlH-1Zy1MRJdDdBPXKszmdQ,935
|
|
1079
|
+
wbcore/release_notes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1080
|
+
wbcore/release_notes/admin.py,sha256=R9oLaJpFcyHqZk3R5sdajrcYSbbtFjXuvIqsZUaCVo8,728
|
|
1081
|
+
wbcore/release_notes/buttons.py,sha256=QIQVvFp_Q-PkeWOEZvV5HqzEZBe7RDIUQc6j-B9MNi8,1132
|
|
1082
|
+
wbcore/release_notes/display.py,sha256=uVglBRoud_cI9-mUDgmMW2h5byCfpYEzdcLRldH1_sQ,1847
|
|
1083
|
+
wbcore/release_notes/filters.py,sha256=hGK4flrB1RWi3ALM-YGqgeJ0sxxtbG30IDu_SzN_bfo,1048
|
|
1084
|
+
wbcore/release_notes/models.py,sha256=BMjH0PIw9XIfJwERKE41PH8U780o5h5ybrIwrbVwbiQ,2840
|
|
1085
|
+
wbcore/release_notes/serializers.py,sha256=n-tDEXnJVItVr7VvL2YN8fss7H7OUm_ZTHPUEhjt51w,380
|
|
1086
|
+
wbcore/release_notes/utils.py,sha256=cV0TGFHBXIa7hsiJveKywuONM4z6w3jlTy9LaXvIvRE,440
|
|
1087
|
+
wbcore/release_notes/viewsets.py,sha256=Bp_cBak2fXnf1xKO788FVZgFwXd6gM3ex7VIqAAFQFo,2016
|
|
1088
|
+
wbcore/reversion/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1089
|
+
wbcore/reversion/filters.py,sha256=nJg0Zcpu80DxioacHGw-YKurRN8T4KdI0imrzwsSLSU,1225
|
|
1090
|
+
wbcore/reversion/serializers.py,sha256=Nxchb-c3EetQnF-b58Kt8W8bVw5XqKkNyK-XtYrAp8U,2860
|
|
1091
|
+
wbcore/reversion/viewsets/__init__.py,sha256=PQCgQSj30tGGcuO-BhpJu9BqyZwImsBVJYOu1T1JwQU,183
|
|
1092
|
+
wbcore/reversion/viewsets/buttons.py,sha256=nXTiNOow6m7aFUlOjpclC5MJ6FbDHi20jDoyqENm090,4125
|
|
1093
|
+
wbcore/reversion/viewsets/displays.py,sha256=l_U6wHsLKfe4yf9merlSVEpuMj_GtEze0lXCh6Z0AEg,1677
|
|
1094
|
+
wbcore/reversion/viewsets/endpoints.py,sha256=9ebukzZ2Q_0PL1hORDGQXzq2x2G9ziSHACbLpAbS6ow,906
|
|
1095
|
+
wbcore/reversion/viewsets/titles.py,sha256=lQ2wwStEVg3LyF0NDy_-mTN3RYYe-eCs_31E25wh4zs,792
|
|
1096
|
+
wbcore/reversion/viewsets/viewsets.py,sha256=OlDYkqLBD8-eyb07eXVG69BzBanjhj_E_kI3nXXGe00,4183
|
|
1097
|
+
wbcore/search/__init__.py,sha256=1V_2yxfShXBHdZLQZkFGqn5SrRpUBZCpaEyF1skLLO4,1496
|
|
1098
|
+
wbcore/serializers/__init__.py,sha256=82xurxoF-BXAo7RN_iSQM0xHZRAh5ldHsY-V2chty3c,1480
|
|
1099
|
+
wbcore/serializers/mixins.py,sha256=5oOTK82mP7d5fMqr8hMcq-pnh3MQ_HwmX6qpUrEQNYI,755
|
|
1100
|
+
wbcore/serializers/serializers.py,sha256=5o2w91TacoyTWi0MHpbezVRfUP5u2re_1k88BtHtH-4,19042
|
|
1101
|
+
wbcore/serializers/utils.py,sha256=H_faApLg6bNiZvZNvApZhmVBJ07obw1u5QKZx7DLLa8,4251
|
|
1102
|
+
wbcore/serializers/fields/__init__.py,sha256=xNNak0yl8FtC6m-__B5mfieSNGAygXND34E_HrJ2Fcw,1498
|
|
1103
|
+
wbcore/serializers/fields/boolean.py,sha256=vwP7HQflArFEG0w9FfXkPYKreFJ5qMjs-L0qKMeKCVQ,1682
|
|
1104
|
+
wbcore/serializers/fields/choice.py,sha256=ozVwKaPCpsgPuQXQWr8TxHIcxSdGvhw23OFVD0xnipg,2128
|
|
1105
|
+
wbcore/serializers/fields/datetime.py,sha256=UVrBAdh-Iy3cDdVxbce9rsPYwwfxDJ-kJEr_1K_29ec,7386
|
|
1106
|
+
wbcore/serializers/fields/fields.py,sha256=R_JJxnSfgKK6pYFgfe_-7qo_y25YksQ-WuNgiKWev4U,7068
|
|
1107
|
+
wbcore/serializers/fields/file.py,sha256=tDDK2bITiP7zxl9Ilzja2_gWae_lf9CkO1rDEBPaj6g,568
|
|
1108
|
+
wbcore/serializers/fields/fsm.py,sha256=xUYxDj166PDnmDLggI4fShXdSunJVzbc8quFQioM3Yc,700
|
|
1109
|
+
wbcore/serializers/fields/json.py,sha256=8SmEOW2hXnTTfuCztaxA8AA3qtTxhCZtft7BJm1yO6o,2225
|
|
1110
|
+
wbcore/serializers/fields/list.py,sha256=cYmMBg9M10Qb_5z98CeP3SjE2bV-u7Z0xkzXr-C3xoA,4178
|
|
1111
|
+
wbcore/serializers/fields/mixins.py,sha256=sP1mEiD5tMZ4yCr-X0IkIY3RZwJcT0JokvontvRsDKw,7613
|
|
1112
|
+
wbcore/serializers/fields/number.py,sha256=Lxhiy8KBMA8dzv2nKsHVtAaPgjZMNt0TQTgVujh_2BI,3473
|
|
1113
|
+
wbcore/serializers/fields/other.py,sha256=3r_70JH_A_daS99LuwQWwa0LNtyosKW7QKJzZgQA-zo,1131
|
|
1114
|
+
wbcore/serializers/fields/primary_key.py,sha256=yTbs5B2QlUX-XKEtop3JpwIPeP-FhM8u-2qDXM5q6u0,676
|
|
1115
|
+
wbcore/serializers/fields/related.py,sha256=mq7QhcjSG273G400ZueYJnNVNDlGgnUHLoAHaKRjW_Q,6355
|
|
1116
|
+
wbcore/serializers/fields/text.py,sha256=8cmRiH1RpCDGzuUmO1zMmm8uiybXDMqyuBkjFblNMmQ,5060
|
|
1117
|
+
wbcore/serializers/fields/types.py,sha256=Jf2lcNRKOnxMn55JZTTcvACRpADXwwXgPX3ojigrung,1011
|
|
1118
|
+
wbcore/shares/__init__.py,sha256=uhHkbgHoFgbcsxHUPxNNzNs11oIjjQ7zIxG8FzsREAI,32
|
|
1119
|
+
wbcore/shares/config.py,sha256=7-Tfit2PFUVpr9qbapcmtZbjeMiUHSyfYX6PKGwnj_w,2292
|
|
1120
|
+
wbcore/shares/decorator.py,sha256=vFoVidO2IxLzYPZ-qWDWjjPxbCzFAvw4FVl2YZfPPAQ,448
|
|
1121
|
+
wbcore/shares/signals.py,sha256=qmwcA6DozbdbuaZfepqTrTrijIxMmyOvOdYWLQfJygQ,69
|
|
1122
|
+
wbcore/shares/sites.py,sha256=66gBs0KuJnyOPLi9jVTREpPOgeNTqxSLrlYm-kTvsj4,903
|
|
1123
|
+
wbcore/shares/views.py,sha256=OCn7UnUHPtCw3X2cuUenzKG1oP_xybB5NriX2cCBpzU,925
|
|
1124
|
+
wbcore/signals/__init__.py,sha256=Q2kgL2dFk4z00Awdvlmi5D2ZxR5r1vAtLExKPOJ6bsA,381
|
|
1125
|
+
wbcore/signals/clone.py,sha256=n3fzToDDhac3udXl6GHbJJ1d8WbybH1Dd3p7qiMbK78,172
|
|
1126
|
+
wbcore/signals/filters.py,sha256=I5_dBadn-oMb2vwgHRjNrFe1o2GChiz7_SaNvj7YBw8,59
|
|
1127
|
+
wbcore/signals/instance_buttons.py,sha256=-ybJX9YYpSC4HjqdGwWpAAumqSb8FxikjDyTa0i2smc,141
|
|
1128
|
+
wbcore/signals/merge.py,sha256=CpGvmqNjtuVjG_vN-NQs3j28j-FL1ZfqEJOv9GgLslY,171
|
|
1129
|
+
wbcore/signals/models.py,sha256=WH_WYexPNg5HHabXGxEAyCjVQ4arnqNk0ZXdOM9rT48,420
|
|
1130
|
+
wbcore/signals/permissions.py,sha256=H3jAeAmRcHJDPzKUnReITnk0vUEfG1LHiPoB-ygu3R8,71
|
|
1131
|
+
wbcore/signals/serializers.py,sha256=0ciF0DZTQYnkqZx8G1Yl3aM0JoWUpGRnmr93jqVlVeQ,286
|
|
1132
|
+
wbcore/templates/forms.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1133
|
+
wbcore/templates/errors/404.html,sha256=hiD4YP3wVt1sG60w-ghAD1FJsaUxre4nnCbG3L_BaWY,3922
|
|
1134
|
+
wbcore/templates/errors/500.html,sha256=G4DWI97Xhurr3mUoVKZfhN4aq5j88hvIP567BT81vW4,3852
|
|
1135
|
+
wbcore/templates/errors/503.html,sha256=srP-4rkWucmDl0Lv9MPZy-Vuum5Z2pwAwe3L-0ieN7o,3675
|
|
1136
|
+
wbcore/templates/errors/custom.html,sha256=dSQy5pn4xrhf1Qq_aEe7DEYLLAt2QoCkvy6tpX-pTbA,3663
|
|
1137
|
+
wbcore/templates/notifications/email_template.html,sha256=k-o9ieU6z6c0SKAw43_iLEleJTIZK43Y8jrRCwbKPCc,1441
|
|
1138
|
+
wbcore/templates/reversion/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1139
|
+
wbcore/templates/reversion/compare_detail.html,sha256=1bg0o6ycoCvlw630T1dH3LXJifXx1YndLcm_eJQvbIs,520
|
|
1140
|
+
wbcore/templates/wbcore/dynamic_color_array.html,sha256=GMsZFd0mBQwoZmRe1n_QY2KU3KfjLLnn3aeU_gOkOBw,1510
|
|
1141
|
+
wbcore/templates/wbcore/email_base_template.html,sha256=whEAuMa1wvXFEefb2gAwGzUAV2AJ86sjm3uvZQ5GgoE,13290
|
|
1142
|
+
wbcore/templates/wbcore/email_notification_template.html,sha256=_4gNUJ8UU0AqXGLLNk8zH68n_CXZ3mNYYaMSG16kxw4,127
|
|
1143
|
+
wbcore/templates/wbcore/frontend.html,sha256=ZNm9NgvXwxzs10px95I2GyBhORpw9-adF1AluQJskLE,1912
|
|
1144
|
+
wbcore/templates/wbcore/admin/change_list.html,sha256=R4D2DiiESjopzwvUTThpsGqX1ikYA92D1fPbER-M74Q,188
|
|
1145
|
+
wbcore/templates/wbcore/admin/csv_form.html,sha256=g8w6oXAyvwOL7ckNmR_wch-vxnh-JLXFOa3cUkDnGSA,337
|
|
1146
|
+
wbcore/test/__init__.py,sha256=gxYHDwZugGf-eRh7sG5z7247y5uvyDIHmsm4J0ajBis,713
|
|
1147
|
+
wbcore/test/mixins.py,sha256=rtjhQCh-u4eGoEC-XTfjsmy1CwiQ1Q4dSs0EpZBz7Q0,32375
|
|
1148
|
+
wbcore/test/signals.py,sha256=UX7n9zsak30feE1GLXkwAhLEbmRnllNPu17D1top6YI,174
|
|
1149
|
+
wbcore/test/tests.py,sha256=keUG6btZfJHiQipKq5augse5Hedej2cn6w7kgZRrIYw,4493
|
|
1150
|
+
wbcore/test/utils.py,sha256=-PNuj4UjeoX2FdRCPObedTQAgUDsmiO672BCwIZtKwE,8406
|
|
1151
|
+
wbcore/test/e2e_helpers_methods/e2e_checks.py,sha256=teyYS5OQGSy2r7VvhfxkaskPOrQ_jLBNPN64CRUKmzQ,4266
|
|
1152
|
+
wbcore/test/e2e_helpers_methods/e2e_helper_methods.py,sha256=Uo61TfEwYOP_u9N84gz-asZ4VwK80cWhdlnhJpnw8U8,17654
|
|
1153
|
+
wbcore/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1154
|
+
wbcore/tests/conftest.py,sha256=XWVhrLuyY80o_-qMx4HQu0-k2h-GKw-xXnNMyUIcbjQ,1425
|
|
1155
|
+
wbcore/tests/models.py,sha256=QYJRhVMJZ6nENYuO-ktieiKvw3clxy57n3Is5h0tcmg,207
|
|
1156
|
+
wbcore/tests/test_configs.py,sha256=NYJrozsPE_ZW1uNqC_wrMpajbGTiHkIy3bono2Lvkos,1766
|
|
1157
|
+
wbcore/tests/test_enums.py,sha256=KwnEznR6PdWN9AHFMY1qx0krOqAoT7QZF8x-BPsOanM,1741
|
|
1158
|
+
wbcore/tests/test_list_display.py,sha256=9zX8grPa0lie65vxDAzJUBTjwVIep2mItbu0voSwhHs,721
|
|
1159
|
+
wbcore/tests/test_pagination.py,sha256=JRdmhLNrBkg_r7Cg1tug-jxjt0hJg4k8m-xcjpsyKMY,1078
|
|
1160
|
+
wbcore/tests/test_something.py,sha256=wGORRE9Bin1SBkXeOudDJ11plBX2SlzIPWEmS7Nc7GI,1331
|
|
1161
|
+
wbcore/tests/test_viewsets.py,sha256=bOAOPIDZsV4O70d5bGde_DhC5-S4i_WyoB4JdqhrTyU,830
|
|
1162
|
+
wbcore/tests/e2e/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1163
|
+
wbcore/tests/e2e/test_e2e.py,sha256=VtXsvubhYn1CxhlFVflBa4-UcHKiSj3kiVrbeT-rAeo,1069
|
|
1164
|
+
wbcore/tests/test_cache/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1165
|
+
wbcore/tests/test_cache/test_decorators.py,sha256=FfQh1L9KbbQ0_49KcXF7KUUrJhbd9u-7hkTLS6CQzA4,1065
|
|
1166
|
+
wbcore/tests/test_cache/test_mixins.py,sha256=aAp_uCpgDVbemzL5WthcfkuaqLSeVPeLzMhdf2jy_1c,893
|
|
1167
|
+
wbcore/tests/test_cache/test_registry.py,sha256=XaEWHT2AWcmRJsBj5zWJvdjDEwdcxXeBcox_lrNwdKE,2018
|
|
1168
|
+
wbcore/tests/test_fields/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1169
|
+
wbcore/tests/test_fields/test_boolean_fields.py,sha256=2k5r2kw6TtHk53xEiOfERq0GnpNfovk4DHBMiHw10V0,1416
|
|
1170
|
+
wbcore/tests/test_fields/test_choice_fields.py,sha256=N9ell0A7s3eSBp-Ohn37pSySSePTtJmzObcbu79Lw98,2019
|
|
1171
|
+
wbcore/tests/test_fields/test_datetime_fields.py,sha256=1i-bzOl1J-d8iRt2nSnTKSf9c4skZjhvHAj9NmR3Csk,5264
|
|
1172
|
+
wbcore/tests/test_fields/test_fields.py,sha256=18xq3VZpkjgJA1uodGCMbHH-gtBV9tCnWq-qQqRlwoc,696
|
|
1173
|
+
wbcore/tests/test_fields/test_file_fields.py,sha256=WD3EYI8cNPis62n0StHT-wFHn_BE0dnEqu0wX2hPskw,1451
|
|
1174
|
+
wbcore/tests/test_fields/test_json_fields.py,sha256=oq10g8N3jxqLCebTL9TiTrOd1jMo8M2pI-NIWIHbfIE,883
|
|
1175
|
+
wbcore/tests/test_fields/test_list_fields.py,sha256=3-oDtZC-VAS_tJykxPPxfnv6sgOEunF2axzrCYrThRI,766
|
|
1176
|
+
wbcore/tests/test_fields/test_mixins.py,sha256=X0p2NEfJNrsLUbUFPI_Lf92-2lvUcvQTtPqS9OQTzZo,3818
|
|
1177
|
+
wbcore/tests/test_fields/test_number_fields.py,sha256=Fd5Oqn26dvs1ak3-GvU5cdze8tX3cx0LpVwQKEYcisM,5351
|
|
1178
|
+
wbcore/tests/test_fields/test_other_fields.py,sha256=7gkCW9KtyrxGPAJnRFa6f1N3EREobY79AU8UF9b2Gt4,1775
|
|
1179
|
+
wbcore/tests/test_fields/test_primary_key_fields.py,sha256=I-PwBK1RO4kHVbLu45IOHX8PiRBnC4dEOl5VlEpe2AI,1509
|
|
1180
|
+
wbcore/tests/test_fields/test_related.py,sha256=l-iin7Je_CUdzSjEn6qvBA-_fmpbyke93iEz_9KIZs0,2854
|
|
1181
|
+
wbcore/tests/test_fields/test_text_fields.py,sha256=Qs1FO5NFkUJ15FVPFzNqZqwX2aTqMSKND7ie1mIPK1I,3749
|
|
1182
|
+
wbcore/tests/test_filters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1183
|
+
wbcore/tests/test_filters/test_mixins.py,sha256=6BSuIOhrTwYGNlfq1cz97fJVTMUnnXMHfQPHnMdR61c,4770
|
|
1184
|
+
wbcore/tests/test_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1185
|
+
wbcore/tests/test_models/test_fields.py,sha256=RtBUBYJ-QCQZi7wOKJ056pHzMXptu43_1yr7ASfyqoo,628
|
|
1186
|
+
wbcore/tests/test_models/test_mixins.py,sha256=O56Fj3P-AN46QPJ2zv_fLgZhmrCsbrWDBORZ7NFARtw,725
|
|
1187
|
+
wbcore/tests/test_new_display/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1188
|
+
wbcore/tests/test_new_display/test_inlines.py,sha256=dXyRgqOx7OelAWcdY1vrD8R8fGlNUdzwb3F7ZKjbcw0,437
|
|
1189
|
+
wbcore/tests/test_new_display/test_layouts.py,sha256=73AKzMPBbSWt3nOc9XVuYNukfNtoulFVWgwuYZyraUk,435
|
|
1190
|
+
wbcore/tests/test_new_display/test_operators.py,sha256=jdmF_qk34XWD9bZJaHcgPiD7lol4EEagz2wmbJscgds,379
|
|
1191
|
+
wbcore/tests/test_new_display/test_pages.py,sha256=j3eycrVezN9qd8f5A2yxDi80skyPNBRH6bqe74cBXmk,346
|
|
1192
|
+
wbcore/tests/test_new_display/test_sections.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1193
|
+
wbcore/tests/test_new_display/test_shortcuts.py,sha256=je0ERwpK6K_ud5gVK8iDTt4gqfMDbJmR7OU-QWVqlRs,1413
|
|
1194
|
+
wbcore/tests/test_new_display/test_utils.py,sha256=0MQ8bIQSGK2nS2n1-mYVVfeH1ryZORfytaJF0TwYi9g,1545
|
|
1195
|
+
wbcore/tests/test_permissions/test_backend.py,sha256=8jPkbvVpfxFrXrkUG_Hye8kaU8pw9OIeGwvVRJhsvNo,890
|
|
1196
|
+
wbcore/tests/test_serializers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1197
|
+
wbcore/tests/test_serializers/test_fields.py,sha256=YATLhLZTWP6TpY57N-Gu0_EAzFV7BAnReJhMv9ShDgk,6428
|
|
1198
|
+
wbcore/tests/test_serializers/test_mixins.py,sha256=ItuhLcuEi6qgbeg55Yn0u8hRibUs_uXEOXZty7f1Jpg,1553
|
|
1199
|
+
wbcore/tests/test_serializers/test_related.py,sha256=0CZIdnKjJ_VdxmfCH9Fw1EM1BBrryGrb1DEMsTJjwrs,3428
|
|
1200
|
+
wbcore/tests/test_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1201
|
+
wbcore/tests/test_utils/test_date.py,sha256=UsXm1kt-YtpaYwt2psjycY3V3NxVsuSf9mKIftfmcjQ,1734
|
|
1202
|
+
wbcore/tests/test_utils/test_date_builder.py,sha256=M4hmE0MlGDnP8d0u_yEQB1iAFNnc4TK-xG-Jg-JnaXg,3157
|
|
1203
|
+
wbcore/tests/test_utils/test_primary.py,sha256=a6FF5V3CFZmsD1fxEZFONTW9Z3oBzJSRDJ9DrxXCQZ0,3561
|
|
1204
|
+
wbcore/tests/test_utils/test_signals.py,sha256=W9d3YBF5DqbH3AwNa1_3RVq0HuLB5oI2fIp6Fj0eaYQ,1339
|
|
1205
|
+
wbcore/utils/__init__.py,sha256=CpWxRXxxPpu3MU7TNEGqfAFpdYUpjw2FTo0lKjWUE1c,325
|
|
1206
|
+
wbcore/utils/cache.py,sha256=3p2sA7UNSO08TmLLrSB-rIUgJ_FkGPj2TdCG-M1OMAc,279
|
|
1207
|
+
wbcore/utils/date.py,sha256=tSNatnQ3CBNvyPjt5sZHctLtY0cOy4OHD4NOqInLdXE,7905
|
|
1208
|
+
wbcore/utils/deprecations.py,sha256=ju1h3-icVlJnItZkugdOdeX4sY3QJIeFxXxAo9TG_rM,269
|
|
1209
|
+
wbcore/utils/enum.py,sha256=eTTMt03iCMaNEoB5xsq5IGxkCi8X3xfIRjJNI0ygzWs,533
|
|
1210
|
+
wbcore/utils/figures.py,sha256=Z7EsJ-pSWk2UExahKhO7OnPYTJltMFV6LJp8DbLptiI,9199
|
|
1211
|
+
wbcore/utils/html.py,sha256=Ir_bX4l3EgaWf7bv3ymlt836ekoCVDHedMMu8TzXyj4,157
|
|
1212
|
+
wbcore/utils/importlib.py,sha256=6_-m6YuGdg-iKQU_MU1yCDS0_nhOTAG6UNIQYeAYTiI,461
|
|
1213
|
+
wbcore/utils/itertools.py,sha256=tgmDS9FMzq3oy5PzAMcBreNAN8EjpoC6waRt738dcW8,1410
|
|
1214
|
+
wbcore/utils/models.py,sha256=fCYU6OUuWzBA0JzTtkTZr9jw-XPNQZaCDxAh6tBdJ_g,9490
|
|
1215
|
+
wbcore/utils/numbers.py,sha256=KaC2yNmaVMwe05uRvGvC_ayWJW_1dOgjswlqsB-QeoM,2289
|
|
1216
|
+
wbcore/utils/prettytable.py,sha256=RnZ9VZpSZBaOVPyvcbdD17PeKp6pNN57PDfyILy1nlg,877
|
|
1217
|
+
wbcore/utils/print.py,sha256=_CBbuAf2ZbjXQBedcvhe6jZAfNq2kjC_ImWlWDbeRCc,725
|
|
1218
|
+
wbcore/utils/renderers.py,sha256=2q1ATrmzFFe03ofuKn2WZ3hK53aFwyEwCVbK0YxkdDM,520
|
|
1219
|
+
wbcore/utils/reportlab.py,sha256=gAvcZqpsx0-M9DxW_GvnXQbPFilmf18tQKhK3DqU-9Q,309
|
|
1220
|
+
wbcore/utils/rrules.py,sha256=oqg1eY_X7CLN--UkTjPsKuF_FrtKi1no9-ITvYerrXM,2743
|
|
1221
|
+
wbcore/utils/serializers.py,sha256=fn__UYJolYjg063OHmAt7zC9zxMxsqrVERpGhLzUK3o,418
|
|
1222
|
+
wbcore/utils/settings.py,sha256=MCt48ZJO9nOzGPAFYJ-_o0uRCDUt3_yzEek6m4oZTYg,198
|
|
1223
|
+
wbcore/utils/signals.py,sha256=sNDbYKcjTsACpod50dB_TgYC-f37aN0N_M_DMJgTiMA,1132
|
|
1224
|
+
wbcore/utils/string_loader.py,sha256=AWmn40nM8A1cxoVwpO2lF6YidEfL3JC1du2cank4Dw4,1169
|
|
1225
|
+
wbcore/utils/strings.py,sha256=DvMm2vrEjfxH6Hjf7XvRSo-3eAnLf4oLzxki8xonmNs,1856
|
|
1226
|
+
wbcore/utils/urls.py,sha256=BjmavE84QYECWDKyV3dENn8GQqwdBmX6MqXyCjmwmbA,2137
|
|
1227
|
+
wbcore/utils/views.py,sha256=XnWQqMjAi6dXTF-ZYF9FHU1a7cDpAymcuZRt8g_cEqI,8541
|
|
1228
|
+
wbcore/utils/date_builder/__init__.py,sha256=4rS8hqGqTTL7ztIJ-J-EMigGC_HTkHD65LT5FQ67yjo,337
|
|
1229
|
+
wbcore/utils/date_builder/components.py,sha256=Jyq-P6LC35T24-5zdRDOrf9QSBrTmH73iEbqYOPFTkM,1152
|
|
1230
|
+
wbcore/utils/date_builder/offsets.py,sha256=IsnoxPd3l7xh5IOEH3e6kSoqX8aqiVNSDr2ZiOmhpYc,626
|
|
1231
|
+
wbcore/viewsets/__init__.py,sha256=UEIbKOGEpNW6M1EoNYalgctq_zeU3alEtnlfVSiFit4,263
|
|
1232
|
+
wbcore/viewsets/encoders.py,sha256=JEAH_iEXYbNaaeQ3ZH73XJsYnL2FrUWaE8dxmE3gjTk,551
|
|
1233
|
+
wbcore/viewsets/generics.py,sha256=lKDq9UY_Tyc56u1bqaIEvHGgoaXwXxpZ1c3fLVteptI,134
|
|
1234
|
+
wbcore/viewsets/mixins.py,sha256=IdHd_uixOv3ExKoHxTgL5Bt8OELIwfYwhBZm0nsvZfc,12054
|
|
1235
|
+
wbcore/viewsets/utils.py,sha256=4520Ij3ASM8lOa8QZkCqbBfOexVRiZu688eW-PGqMOA,882
|
|
1236
|
+
wbcore/viewsets/viewsets.py,sha256=FPPESunEjlunDr5VFsjTfsquTS3iDSQkw0H6QjMKPqk,6574
|
|
1237
|
+
wbcore-1.59.9.dist-info/METADATA,sha256=QnMgZcMPLWlUbAHLh-_O3uWcRmffAohcoLsrIrnuTrU,2316
|
|
1238
|
+
wbcore-1.59.9.dist-info/WHEEL,sha256=aha0VrrYvgDJ3Xxl3db_g_MDIW-ZexDdrc_m-Hk8YY4,105
|
|
1239
|
+
wbcore-1.59.9.dist-info/RECORD,,
|