django-cfg 1.4.88__py3-none-any.whl → 1.4.89__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.
Potentially problematic release.
This version of django-cfg might be problematic. Click here for more details.
- django_cfg/__init__.py +1 -1
- django_cfg/apps/centrifugo/views/__init__.py +0 -2
- django_cfg/apps/dashboard/services/__init__.py +2 -0
- django_cfg/apps/dashboard/services/overview_service.py +205 -0
- django_cfg/apps/frontend/test_routing.py +134 -0
- django_cfg/apps/frontend/views.py +69 -28
- django_cfg/apps/urls.py +0 -1
- django_cfg/core/builders/apps_builder.py +0 -58
- django_cfg/modules/django_unfold/__init__.py +5 -24
- django_cfg/modules/django_unfold/models/__init__.py +0 -23
- django_cfg/modules/django_unfold/models/config.py +11 -65
- django_cfg/modules/django_unfold/{dashboard.py → navigation.py} +21 -152
- django_cfg/modules/django_unfold/tailwind.py +2 -4
- django_cfg/pyproject.toml +1 -1
- django_cfg/registry/third_party.py +0 -9
- django_cfg/routing/callbacks.py +1 -43
- django_cfg/static/frontend/admin/404/index.html +1 -1
- django_cfg/static/frontend/admin/404.html +1 -1
- django_cfg/static/frontend/admin/500/index.html +1 -1
- django_cfg/static/frontend/admin/_next/static/{D_d9HRw5Yn7BRHAX5q89_ → 0sN9ktsgXH48ygtGSrhfu}/_buildManifest.js +1 -1
- django_cfg/static/frontend/admin/_next/static/chunks/50314-9443faa6df24aebf.js +1 -0
- django_cfg/static/frontend/admin/_next/static/chunks/pages/{_app-1c0fff0f59a6d683.js → _app-c7dcd3aa616fab68.js} +1 -1
- django_cfg/static/frontend/admin/_next/static/chunks/pages/private/{centrifugo-44a8313fa040e9ad.js → centrifugo-f9ecbc3ae0052a03.js} +1 -1
- django_cfg/static/frontend/admin/auth/index.html +1 -1
- django_cfg/static/frontend/admin/index.html +1 -1
- django_cfg/static/frontend/admin/legal/cookies/index.html +1 -1
- django_cfg/static/frontend/admin/legal/privacy/index.html +1 -1
- django_cfg/static/frontend/admin/legal/security/index.html +1 -1
- django_cfg/static/frontend/admin/legal/terms/index.html +1 -1
- django_cfg/static/frontend/admin/private/centrifugo/index.html +1 -1
- django_cfg/static/frontend/admin/private/index.html +1 -1
- django_cfg/static/frontend/admin/private/profile/index.html +1 -1
- django_cfg/static/frontend/admin/private/ui/index.html +2 -2
- {django_cfg-1.4.88.dist-info → django_cfg-1.4.89.dist-info}/METADATA +1 -1
- {django_cfg-1.4.88.dist-info → django_cfg-1.4.89.dist-info}/RECORD +39 -143
- django_cfg/apps/centrifugo/static/django_cfg_centrifugo/css/dashboard.css +0 -260
- django_cfg/apps/centrifugo/static/django_cfg_centrifugo/js/dashboard/live_channels.mjs +0 -313
- django_cfg/apps/centrifugo/static/django_cfg_centrifugo/js/dashboard/live_testing.mjs +0 -803
- django_cfg/apps/centrifugo/static/django_cfg_centrifugo/js/dashboard/main.mjs +0 -341
- django_cfg/apps/centrifugo/static/django_cfg_centrifugo/js/dashboard/overview.mjs +0 -432
- django_cfg/apps/centrifugo/static/django_cfg_centrifugo/js/dashboard/testing.mjs +0 -33
- django_cfg/apps/centrifugo/static/django_cfg_centrifugo/js/dashboard/websocket.mjs +0 -210
- django_cfg/apps/centrifugo/templates/django_cfg_centrifugo/components/channels_content.html +0 -46
- django_cfg/apps/centrifugo/templates/django_cfg_centrifugo/components/live_channels_content.html +0 -123
- django_cfg/apps/centrifugo/templates/django_cfg_centrifugo/components/overview_content.html +0 -45
- django_cfg/apps/centrifugo/templates/django_cfg_centrifugo/components/publishes_content.html +0 -84
- django_cfg/apps/centrifugo/templates/django_cfg_centrifugo/components/stat_cards.html +0 -53
- django_cfg/apps/centrifugo/templates/django_cfg_centrifugo/components/system_status.html +0 -91
- django_cfg/apps/centrifugo/templates/django_cfg_centrifugo/components/tab_navigation.html +0 -29
- django_cfg/apps/centrifugo/templates/django_cfg_centrifugo/components/testing_tools.html +0 -415
- django_cfg/apps/centrifugo/templates/django_cfg_centrifugo/layout/base.html +0 -61
- django_cfg/apps/centrifugo/templates/django_cfg_centrifugo/pages/dashboard.html +0 -58
- django_cfg/apps/centrifugo/templates/django_cfg_centrifugo/tags/connection_script.html +0 -48
- django_cfg/apps/centrifugo/templatetags/__init__.py +0 -1
- django_cfg/apps/centrifugo/templatetags/centrifugo_tags.py +0 -81
- django_cfg/apps/centrifugo/urls_admin.py +0 -20
- django_cfg/apps/centrifugo/views/dashboard.py +0 -28
- django_cfg/modules/django_dashboard/__init__.py +0 -23
- django_cfg/modules/django_dashboard/components.py +0 -312
- django_cfg/modules/django_dashboard/debug.py +0 -174
- django_cfg/modules/django_dashboard/management/__init__.py +0 -0
- django_cfg/modules/django_dashboard/management/commands/__init__.py +0 -0
- django_cfg/modules/django_dashboard/management/commands/debug_dashboard.py +0 -109
- django_cfg/modules/django_dashboard/sections/__init__.py +0 -1
- django_cfg/modules/django_dashboard/sections/base.py +0 -129
- django_cfg/modules/django_dashboard/sections/commands.py +0 -33
- django_cfg/modules/django_dashboard/sections/documentation.py +0 -393
- django_cfg/modules/django_dashboard/sections/overview.py +0 -398
- django_cfg/modules/django_dashboard/sections/stats.py +0 -48
- django_cfg/modules/django_dashboard/sections/system.py +0 -74
- django_cfg/modules/django_dashboard/sections/widgets.py +0 -222
- django_cfg/modules/django_unfold/callbacks/__init__.py +0 -9
- django_cfg/modules/django_unfold/callbacks/actions.py +0 -51
- django_cfg/modules/django_unfold/callbacks/apizones.py +0 -122
- django_cfg/modules/django_unfold/callbacks/base.py +0 -290
- django_cfg/modules/django_unfold/callbacks/charts.py +0 -223
- django_cfg/modules/django_unfold/callbacks/commands.py +0 -40
- django_cfg/modules/django_unfold/callbacks/main.py +0 -322
- django_cfg/modules/django_unfold/callbacks/statistics.py +0 -240
- django_cfg/modules/django_unfold/callbacks/system.py +0 -180
- django_cfg/modules/django_unfold/callbacks/users.py +0 -65
- django_cfg/modules/django_unfold/models/dashboard.py +0 -207
- django_cfg/modules/django_unfold/models/tabs.py +0 -26
- django_cfg/modules/django_unfold/models.py +0 -98
- django_cfg/modules/django_unfold/templates/unfold/helpers/app_list.html +0 -102
- django_cfg/static/frontend/admin/_next/static/chunks/50314-5ec79b293c2283dd.js +0 -1
- django_cfg/templates/admin/sections/commands_section.html +0 -5
- django_cfg/templates/admin/sections/documentation_section.html +0 -5
- django_cfg/templates/admin/sections/overview_section.html +0 -5
- django_cfg/templates/admin/sections/stats_section.html +0 -5
- django_cfg/templates/admin/sections/system_section.html +0 -5
- django_cfg/templates/admin/sections/widgets_section.html +0 -11
- django_cfg/templates/admin_old/components/action_grid.html +0 -49
- django_cfg/templates/admin_old/components/card.html +0 -50
- django_cfg/templates/admin_old/components/data_table.html +0 -67
- django_cfg/templates/admin_old/components/metric_card.html +0 -39
- django_cfg/templates/admin_old/components/modal.html +0 -58
- django_cfg/templates/admin_old/components/progress_bar.html +0 -20
- django_cfg/templates/admin_old/components/section_header.html +0 -26
- django_cfg/templates/admin_old/components/stat_item.html +0 -32
- django_cfg/templates/admin_old/components/stats_grid.html +0 -72
- django_cfg/templates/admin_old/components/status_badge.html +0 -28
- django_cfg/templates/admin_old/components/user_avatar.html +0 -27
- django_cfg/templates/admin_old/constance/change_list.html +0 -74
- django_cfg/templates/admin_old/constance/includes/default_value.html +0 -24
- django_cfg/templates/admin_old/constance/includes/fieldset_header.html +0 -15
- django_cfg/templates/admin_old/constance/includes/results_list.html +0 -16
- django_cfg/templates/admin_old/constance/includes/setting_row.html +0 -50
- django_cfg/templates/admin_old/constance/includes/table_headers.html +0 -10
- django_cfg/templates/admin_old/examples/component_class_example.html +0 -156
- django_cfg/templates/admin_old/import_export/change_list_export.html +0 -24
- django_cfg/templates/admin_old/import_export/change_list_import.html +0 -24
- django_cfg/templates/admin_old/import_export/change_list_import_export.html +0 -34
- django_cfg/templates/admin_old/index.html +0 -80
- django_cfg/templates/admin_old/index_new.html +0 -119
- django_cfg/templates/admin_old/layouts/base_dashboard.html +0 -62
- django_cfg/templates/admin_old/layouts/dashboard_with_tabs.html +0 -176
- django_cfg/templates/admin_old/sections/commands_section.html +0 -549
- django_cfg/templates/admin_old/sections/documentation_section.html +0 -152
- django_cfg/templates/admin_old/sections/overview_section.html +0 -112
- django_cfg/templates/admin_old/sections/stats_section.html +0 -35
- django_cfg/templates/admin_old/sections/system_section.html +0 -99
- django_cfg/templates/admin_old/sections/widgets_section.html +0 -129
- django_cfg/templates/admin_old/snippets/components/activity_tracker.html +0 -70
- django_cfg/templates/admin_old/snippets/components/charts_section.html +0 -113
- django_cfg/templates/admin_old/snippets/components/django_commands.html +0 -270
- django_cfg/templates/admin_old/snippets/components/quick_actions.html +0 -66
- django_cfg/templates/admin_old/snippets/components/recent_activity_improved.html +0 -25
- django_cfg/templates/admin_old/snippets/components/recent_users_table.html +0 -102
- django_cfg/templates/admin_old/snippets/components/stats_cards.html +0 -4
- django_cfg/templates/admin_old/snippets/components/stats_tiles.html +0 -92
- django_cfg/templates/admin_old/snippets/components/system_health.html +0 -22
- django_cfg/templates/admin_old/snippets/components/system_metrics.html +0 -199
- django_cfg/templates/admin_old/snippets/components/user_permissions.html +0 -57
- django_cfg/templates/admin_old/snippets/tabs/app_stats_tab.html +0 -201
- django_cfg/templates/admin_old/snippets/tabs/commands_tab.html +0 -114
- django_cfg/templates/admin_old/snippets/tabs/documentation_tab.html +0 -42
- django_cfg/templates/admin_old/snippets/tabs/overview_tab.html +0 -116
- django_cfg/templates/admin_old/snippets/tabs/stats_tab.html +0 -89
- django_cfg/templates/admin_old/snippets/tabs/users_tab.html +0 -51
- django_cfg/templates/admin_old/snippets/tabs/widgets_tab.html +0 -38
- django_cfg/templates/admin_old/snippets/zones/zones_table.html +0 -176
- /django_cfg/static/frontend/admin/_next/static/{D_d9HRw5Yn7BRHAX5q89_ → 0sN9ktsgXH48ygtGSrhfu}/_ssgManifest.js +0 -0
- {django_cfg-1.4.88.dist-info → django_cfg-1.4.89.dist-info}/WHEEL +0 -0
- {django_cfg-1.4.88.dist-info → django_cfg-1.4.89.dist-info}/entry_points.txt +0 -0
- {django_cfg-1.4.88.dist-info → django_cfg-1.4.89.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
django_cfg/README.md,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
django_cfg/__init__.py,sha256=
|
|
2
|
+
django_cfg/__init__.py,sha256=Zi0OYIs0l1V3RtxTqQfFlvyWlBrYLFNilRkgNItgM4o,1620
|
|
3
3
|
django_cfg/apps.py,sha256=72m3uuvyqGiLx6gOfE-BD3P61jddCCERuBOYpxTX518,1605
|
|
4
4
|
django_cfg/config.py,sha256=y4Z3rnYsHBE0TehpwAIPaxr---mkvyKrZGGsNwYso74,1398
|
|
5
5
|
django_cfg/apps/__init__.py,sha256=JtDmEYt1OcleWM2ZaeX0LKDnRQzPOavfaXBWG4ECB5Q,26
|
|
6
|
-
django_cfg/apps/urls.py,sha256=
|
|
6
|
+
django_cfg/apps/urls.py,sha256=hqsp-fX3Ff7NKxQysjTdYAiRF44b7pxxPG5aJjmk-04,6256
|
|
7
7
|
django_cfg/apps/accounts/README.md,sha256=YkUYJ3iKMYTmm9ALK2PDnX75SDqZxgnkzNLCD5efxRs,8227
|
|
8
8
|
django_cfg/apps/accounts/__init__.py,sha256=I9pq6H5oOFv59Du0VP-g7KsAUDhjKeUcP0spMvhtIjk,99
|
|
9
9
|
django_cfg/apps/accounts/__models.py,sha256=fYhobXbGIYKnG4mZ_pwNePei8O-SHHqgBMhe6qhH3KQ,10075
|
|
@@ -130,7 +130,6 @@ django_cfg/apps/centrifugo/decorators.py,sha256=J3KA0ll3lYwU_gLPKmfmB0HQ5vFnbSAB
|
|
|
130
130
|
django_cfg/apps/centrifugo/registry.py,sha256=HRaBN39UlCMX6ZAysYhdCWMlzAx1scGTvgZLyl3MCjc,2819
|
|
131
131
|
django_cfg/apps/centrifugo/router.py,sha256=HyiJF0t3w085Upu9SPaTJ-qcSW8JYND71rXtuEFAt2g,3116
|
|
132
132
|
django_cfg/apps/centrifugo/urls.py,sha256=wb7MwTmsZC1uewLQrUBpULpCVwzwh9YztUEgmMnLDQ4,902
|
|
133
|
-
django_cfg/apps/centrifugo/urls_admin.py,sha256=Bo_T1Y2bL3FQxdE1nsvzApFrCl976hKdTGw5tqFf0ss,431
|
|
134
133
|
django_cfg/apps/centrifugo/admin/__init__.py,sha256=JoDpJaJwT4f0ntWi8eNgNN5RRzWRty2fKdbDm-7PwEY,254
|
|
135
134
|
django_cfg/apps/centrifugo/admin/centrifugo_log.py,sha256=ME4MThn7dSTe26MHxmSJ37lzo98OO3_WGQu5Kz9TOqA,8096
|
|
136
135
|
django_cfg/apps/centrifugo/admin/config.py,sha256=W_2x55AY8X8xxDxn92UU2jdVzRDlHSu9p3l4VtSAy1M,2005
|
|
@@ -190,29 +189,8 @@ django_cfg/apps/centrifugo/services/client/__init__.py,sha256=BiPchCB875BLN7Q7po
|
|
|
190
189
|
django_cfg/apps/centrifugo/services/client/client.py,sha256=2WhzoYr__DP0eH70f4M3QSx8Se1WlFAFEjTqtQj4q6I,18938
|
|
191
190
|
django_cfg/apps/centrifugo/services/client/config.py,sha256=udkAhLCq1J0GSCupta9N3LwAdSa1mGkZid1GFVjsc00,6952
|
|
192
191
|
django_cfg/apps/centrifugo/services/client/exceptions.py,sha256=VsYExbk_H-qOaPa3iFUWBa1HMgw1IObil73JI1FhcDM,6263
|
|
193
|
-
django_cfg/apps/centrifugo/
|
|
194
|
-
django_cfg/apps/centrifugo/static/django_cfg_centrifugo/js/dashboard/live_channels.mjs,sha256=QOctXgF4jAJYam4mY_JcacU-h-ibXqEJSKiNK4Cfc0E,12661
|
|
195
|
-
django_cfg/apps/centrifugo/static/django_cfg_centrifugo/js/dashboard/live_testing.mjs,sha256=HUE1s9ax4s8t4HS1qU6t6PngFgrehiOanFnM4Krb-xA,28384
|
|
196
|
-
django_cfg/apps/centrifugo/static/django_cfg_centrifugo/js/dashboard/main.mjs,sha256=UE4XzRZzTA2uJWBCDyD1cuB0VY934F9ByZ_6IXJDEDg,12907
|
|
197
|
-
django_cfg/apps/centrifugo/static/django_cfg_centrifugo/js/dashboard/overview.mjs,sha256=LBDArVtav7GInC7u0s4XEDofUFLLAPK4vR-z2F10qPI,16526
|
|
198
|
-
django_cfg/apps/centrifugo/static/django_cfg_centrifugo/js/dashboard/testing.mjs,sha256=82u3xb5T5gDEfIMBw8gr7Kx5vuQruMu94ZezHm1gEBE,971
|
|
199
|
-
django_cfg/apps/centrifugo/static/django_cfg_centrifugo/js/dashboard/websocket.mjs,sha256=0-ugy5uYNHTUMJEV4r1hsOSnrJCbRc9i7wGLEJlf8no,6746
|
|
200
|
-
django_cfg/apps/centrifugo/templates/django_cfg_centrifugo/components/channels_content.html,sha256=NAuKc5owDyYpaz6mYC2zqSVi30x68XnIrutVaGdfU5Q,2372
|
|
201
|
-
django_cfg/apps/centrifugo/templates/django_cfg_centrifugo/components/live_channels_content.html,sha256=2Zp2sN5u3uMOQUE7Gflf8E4e4hgoyLJ9DAeYuUdV1bM,7593
|
|
202
|
-
django_cfg/apps/centrifugo/templates/django_cfg_centrifugo/components/overview_content.html,sha256=zFSczu6VVTTln8T5t5MwcxD-L4EJpsHkeIZXoUPyAaE,2467
|
|
203
|
-
django_cfg/apps/centrifugo/templates/django_cfg_centrifugo/components/publishes_content.html,sha256=wM6ywdh2ASO4oY199tbbLqACQvx7nOMafG2yolpWU14,4804
|
|
204
|
-
django_cfg/apps/centrifugo/templates/django_cfg_centrifugo/components/stat_cards.html,sha256=q33i0HZxajFE41h-5NYfQghGHko18LEqS3IynfLlZas,2871
|
|
205
|
-
django_cfg/apps/centrifugo/templates/django_cfg_centrifugo/components/system_status.html,sha256=Bfecgi3oUASzXlhkAYdJGzx_yeQM3qycG8CiULcqTZM,4077
|
|
206
|
-
django_cfg/apps/centrifugo/templates/django_cfg_centrifugo/components/tab_navigation.html,sha256=pHwRN-NBp8pQf6rMUMI_b6U9mueyoH6-MbdDQ4le-ac,2438
|
|
207
|
-
django_cfg/apps/centrifugo/templates/django_cfg_centrifugo/components/testing_tools.html,sha256=ovfXLUZqpn6IK8dH412mPyl4SCPldnqgphXuJNo65L4,22704
|
|
208
|
-
django_cfg/apps/centrifugo/templates/django_cfg_centrifugo/layout/base.html,sha256=5Cr13EQiT5sHsMEeT8jf3yxRRvBaKqtjQg9qMBsvbLI,3303
|
|
209
|
-
django_cfg/apps/centrifugo/templates/django_cfg_centrifugo/pages/dashboard.html,sha256=rtr0FD41F3Rv37EASRjeUXdtBZ7SjO95RgQx-AQGG64,2420
|
|
210
|
-
django_cfg/apps/centrifugo/templates/django_cfg_centrifugo/tags/connection_script.html,sha256=X4diYyBEmDZzwk43DoHmqOMmC9oJ5qm_GuGdyQodnv8,1621
|
|
211
|
-
django_cfg/apps/centrifugo/templatetags/__init__.py,sha256=W0mT4SMe7uZ3wInk88xVw1LP2vYWBsVV1U3EFt9uW7k,32
|
|
212
|
-
django_cfg/apps/centrifugo/templatetags/centrifugo_tags.py,sha256=0t9cZjxBgKJ3JDh9moRwnPEFkaXwB7gnk2LLwofLgmE,1873
|
|
213
|
-
django_cfg/apps/centrifugo/views/__init__.py,sha256=k4gAQehwJOF6RE-wqgEISdtTRjT4iMw9NoLqh4AeNqk,364
|
|
192
|
+
django_cfg/apps/centrifugo/views/__init__.py,sha256=QdYKO9AY6t-2bwwy78Kw1mAOpe-t3ZZX1KSs5NmrE8I,304
|
|
214
193
|
django_cfg/apps/centrifugo/views/admin_api.py,sha256=4IUaPuzUSB9oN4wbpVUKsOZiYK6ZQGGWLmt-XfRvkfg,13970
|
|
215
|
-
django_cfg/apps/centrifugo/views/dashboard.py,sha256=9FTZDJu-4RsAyc2G5udpsK-ffn3uBlxY3z_TSPfUB4E,757
|
|
216
194
|
django_cfg/apps/centrifugo/views/monitoring.py,sha256=eFjoZDvnfwZh-Fw2OwFDii-SZTReHswi_hqAQeVOLk4,14502
|
|
217
195
|
django_cfg/apps/centrifugo/views/testing_api.py,sha256=fOGc1I7XxOuRIIOnDQ9T1E0GwS5UuyR_YVJxw685UdE,16954
|
|
218
196
|
django_cfg/apps/dashboard/__init__.py,sha256=TirqQji7p39fA15jGBswWSt6ML2K1SP96Iq-7Sw7NFI,236
|
|
@@ -228,11 +206,12 @@ django_cfg/apps/dashboard/serializers/commands.py,sha256=qiRcSMNz7J72TcSVZLYD-oZ
|
|
|
228
206
|
django_cfg/apps/dashboard/serializers/overview.py,sha256=MRXhnSTukBURCDsyHgj3phszLa2VKainBv_5DIaOchA,1062
|
|
229
207
|
django_cfg/apps/dashboard/serializers/statistics.py,sha256=DrT3eDdsqSaeCE3GJ_7_o5Tl_WVc2NwNJ43fm-kPu2A,1664
|
|
230
208
|
django_cfg/apps/dashboard/serializers/system.py,sha256=mDwqPVS2iBfyCcs4BcnT2_kZWRnbWCtLvoTievc7qkU,2093
|
|
231
|
-
django_cfg/apps/dashboard/services/__init__.py,sha256=
|
|
209
|
+
django_cfg/apps/dashboard/services/__init__.py,sha256=0NW_FUdDumd7CzRQL5cYgOBPGZPwT2icB51RyPf6k3c,617
|
|
232
210
|
django_cfg/apps/dashboard/services/apizones_service.py,sha256=FVpdMgBzjTzK3G5zZb2ADKL8ZrjEmdclCRNOr4AdIGI,3955
|
|
233
211
|
django_cfg/apps/dashboard/services/charts_service.py,sha256=QP4nWghSvkqTX-9ndQmmzdEDIsxVewGZj8Oy27kLoOA,8848
|
|
234
212
|
django_cfg/apps/dashboard/services/commands_security.py,sha256=kFADVoYNbqb2DwzFfFBZ3Th2TdfL-1z2V-dnNXHU5Fw,7893
|
|
235
213
|
django_cfg/apps/dashboard/services/commands_service.py,sha256=OnvZBUv2GDUWq3JA3UVrHu-gMc2eJm0-MT_WTdM27uk,11644
|
|
214
|
+
django_cfg/apps/dashboard/services/overview_service.py,sha256=Dl_y89_waG9onDC9PHGWx0ci7m3NOdrMoEKSdv3Fves,6382
|
|
236
215
|
django_cfg/apps/dashboard/services/statistics_service.py,sha256=cX20DB0VrjDLaaLCp8YQUcBw_N34VzZKqY4Ly2Qal0M,14023
|
|
237
216
|
django_cfg/apps/dashboard/services/system_health_service.py,sha256=OUhy8iIWV6hURIkmP1t06hEZB6NF9iDQvPL9HeNNNqM,9188
|
|
238
217
|
django_cfg/apps/dashboard/views/__init__.py,sha256=tgsvzkwnIr3bL35LOpZl8o-2aRLFSKbjfRFMqhZUPjA,561
|
|
@@ -247,8 +226,9 @@ django_cfg/apps/frontend/JWT_AUTO_INJECTION.md,sha256=vw4M49mijxjd1ANlumPbye3d2X
|
|
|
247
226
|
django_cfg/apps/frontend/__init__.py,sha256=QMFJM9mpjiPcU0e5EnuLZb6xpCWi3cbSnihyPS9U2Ik,394
|
|
248
227
|
django_cfg/apps/frontend/apps.py,sha256=9eEK0Tq2nOsol7xSK5aobdwTDJTJrWx6Iy1I1DQb_Yk,391
|
|
249
228
|
django_cfg/apps/frontend/setup.py,sha256=TxKQwQw4xTF6VSyhrQBzbUsdsVQR9JHdjc36LZKeQh4,2444
|
|
229
|
+
django_cfg/apps/frontend/test_routing.py,sha256=fshJOR9ln7m3gXY9EI1_ix_6E5xua6DR264b16RIF-w,4832
|
|
250
230
|
django_cfg/apps/frontend/urls.py,sha256=Vz22_2i2w1J0KQYDCxHnTF5rUf32kUUSBDJZrP07XgY,284
|
|
251
|
-
django_cfg/apps/frontend/views.py,sha256=
|
|
231
|
+
django_cfg/apps/frontend/views.py,sha256=M3PLODyIDU2e0STQbw89QO-qwPV_LUhypiivrzSyV1c,9455
|
|
252
232
|
django_cfg/apps/knowbase/README.md,sha256=HXt_J6WCN-LsMhA7p9mdvih07_vp_r_hkPdmqHhNEeo,3965
|
|
253
233
|
django_cfg/apps/knowbase/__init__.py,sha256=cfGnxDQwjajPhUoleKkgvdabJcB0LdXEglnsBojKkPo,1045
|
|
254
234
|
django_cfg/apps/knowbase/apps.py,sha256=GAYw98_rQdGHoak58xN-0vjdDcRNpJuND3kV-FfM1II,3290
|
|
@@ -584,7 +564,7 @@ django_cfg/core/backends/smtp.py,sha256=kWkNMG7UwLsHcFYSKRgrk1HbP9mU1fxzWYnalHXq
|
|
|
584
564
|
django_cfg/core/base/__init__.py,sha256=Z3bZvxejxk4vvWqmqTBLUi9XJpo6A_5Bq4R0J8q81Y4,116
|
|
585
565
|
django_cfg/core/base/config_model.py,sha256=uljcGEEYfXyipNvnUzmq3bCLnIzLdOqbayPGyEoqflI,20805
|
|
586
566
|
django_cfg/core/builders/__init__.py,sha256=jkInI7_jbxcjitapohw6QmbJPpacnnID6V1JovqtOFM,282
|
|
587
|
-
django_cfg/core/builders/apps_builder.py,sha256=
|
|
567
|
+
django_cfg/core/builders/apps_builder.py,sha256=MJcJe9voZUPUZpUlfvTmKOAIP1ePuEGJQh2sPJmGPdE,6379
|
|
588
568
|
django_cfg/core/builders/middleware_builder.py,sha256=OwqQRoJKYWlXsQNPFBfUvVMYdppUHCPw-UDczV_esYg,3101
|
|
589
569
|
django_cfg/core/builders/security_builder.py,sha256=W8Lk9eTMi3PuNK5qH-BIHegeE0cbvmuHKTumLcwOAh8,23961
|
|
590
570
|
django_cfg/core/environment/__init__.py,sha256=sMOIe9z1i51j8B1VGjpLHJMaeDsBfsgn1TmL03FIeNo,141
|
|
@@ -909,20 +889,6 @@ django_cfg/modules/django_currency/examples/__init__.py,sha256=AaHTrP-T1wQot01qi
|
|
|
909
889
|
django_cfg/modules/django_currency/examples/example_database_usage.py,sha256=etHD9ZaYZNGHkHgaOkCXL2EpHrcRgrqj74iFTyZjozA,4382
|
|
910
890
|
django_cfg/modules/django_currency/utils/__init__.py,sha256=6nD3BGQrBn94ZqCCBG8X78KPuTmberoOauwNOUi3SUk,130
|
|
911
891
|
django_cfg/modules/django_currency/utils/cache.py,sha256=E9IMUZwgTkYAXjLsSvPUdnns1TMHnevTc-no6aPU1hg,2432
|
|
912
|
-
django_cfg/modules/django_dashboard/__init__.py,sha256=g9yW8gWJTJzd0frdGJxviDuozX4ruY1yjwnd-NC4uH8,625
|
|
913
|
-
django_cfg/modules/django_dashboard/components.py,sha256=it3llNZYtG7ll70gKLaUHt6HbgxwVFHxZcQsnawRQ_w,9450
|
|
914
|
-
django_cfg/modules/django_dashboard/debug.py,sha256=izQGjuDcmDGBA4w3dO8TIB4yil3w2rFWM96vay-il2o,5363
|
|
915
|
-
django_cfg/modules/django_dashboard/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
916
|
-
django_cfg/modules/django_dashboard/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
917
|
-
django_cfg/modules/django_dashboard/management/commands/debug_dashboard.py,sha256=-BEcnsjyskViTq6bBFisRQelIACEBi05A3G14Q_V8TI,3664
|
|
918
|
-
django_cfg/modules/django_dashboard/sections/__init__.py,sha256=AnyTuKlR1SrxfF6aK7vBxhv3yuSaL2YLiKSepnkQAq0,34
|
|
919
|
-
django_cfg/modules/django_dashboard/sections/base.py,sha256=9lTOb7QKR8Hzx34W1VjcQpchy9cTGpFOqjcBJnVXn_g,3461
|
|
920
|
-
django_cfg/modules/django_dashboard/sections/commands.py,sha256=6bc8Rjzl6yo0vfs28yxAj7eR9pPjSumjvB6oDYBoUz8,942
|
|
921
|
-
django_cfg/modules/django_dashboard/sections/documentation.py,sha256=rpBRGhawCay_PFhnsFcCUGeULGAkaIKOTxKup9FUfsc,16957
|
|
922
|
-
django_cfg/modules/django_dashboard/sections/overview.py,sha256=Gfgl55d9S9ohzDJ_UxxCP7ny6NbbhfZ24l1uAs0PEc0,13391
|
|
923
|
-
django_cfg/modules/django_dashboard/sections/stats.py,sha256=5k2DKr_87Os0H8Wd_hU3sIcAq799OOnjApJ14hDF-gc,1282
|
|
924
|
-
django_cfg/modules/django_dashboard/sections/system.py,sha256=3zAfms02qB2zSQt3BjBYKw-JlLTjaj0A6qciqYOKNMo,2026
|
|
925
|
-
django_cfg/modules/django_dashboard/sections/widgets.py,sha256=m9X8lxdnnqP5P8343gqHJaztaMAg3D2dUlIc3TCkGOM,8323
|
|
926
892
|
django_cfg/modules/django_drf_theme/__init__.py,sha256=0D5ctzcjadbw-z7jpvVjvo8C1ufrGRk6b-mA4xSutTE,525
|
|
927
893
|
django_cfg/modules/django_drf_theme/apps.py,sha256=UzcjnTQyMqExKGwhg5KhCK0eEqgGXtaYbCztHd_V2pw,428
|
|
928
894
|
django_cfg/modules/django_drf_theme/renderers.py,sha256=AVlXpepI62iHcZhbGAsLwtXpnQ8NeN0zyWQbePUnN3w,1808
|
|
@@ -1042,37 +1008,23 @@ django_cfg/modules/django_twilio/management/commands/test_twilio.py,sha256=ev4sX
|
|
|
1042
1008
|
django_cfg/modules/django_twilio/templates/guide.md,sha256=nZfwx-sgWyK5NApm93zOeeMTfLPOa8HK0IIYKdMLCzE,7799
|
|
1043
1009
|
django_cfg/modules/django_twilio/templates/sendgrid_otp_email.html,sha256=sXR6_D9hmOFfk9CrfPizpLddVhkRirBWpZd_ioEsxVk,6671
|
|
1044
1010
|
django_cfg/modules/django_twilio/templates/sendgrid_test_data.json,sha256=fh1VyuSiDELHsS_CIz9gp7tlsMAEjaDOoqbAPSZ3yyo,339
|
|
1045
|
-
django_cfg/modules/django_unfold/__init__.py,sha256=
|
|
1046
|
-
django_cfg/modules/django_unfold/
|
|
1047
|
-
django_cfg/modules/django_unfold/models.py,sha256=E6NPu2lKkgXkTsqpriupoW5IER_nuvATYvoO8VzjhWE,3942
|
|
1011
|
+
django_cfg/modules/django_unfold/__init__.py,sha256=Uquez6xgPUIc8FBMP7qif-adRYQSjQ2dBHxnJPom3eQ,1337
|
|
1012
|
+
django_cfg/modules/django_unfold/navigation.py,sha256=_trIm8f-K-8Nc5Gp9iEE5rKX7Bjo-Sn03GM3_oK92vI,11623
|
|
1048
1013
|
django_cfg/modules/django_unfold/system_monitor.py,sha256=KcrTa5irstdB1pDKe3sC0zl4tz9LVjhp7xvbqUM4YVk,6781
|
|
1049
|
-
django_cfg/modules/django_unfold/tailwind.py,sha256=
|
|
1014
|
+
django_cfg/modules/django_unfold/tailwind.py,sha256=NY8nWcUdQw61oNmjPoPl7agcTb-r5IqcpFYy35MNsTM,9107
|
|
1050
1015
|
django_cfg/modules/django_unfold/utils.py,sha256=5aFaceRc9B3eXfpOVyKRD2wWqFt8KcHxjQg54oD7Oyg,4482
|
|
1051
|
-
django_cfg/modules/django_unfold/
|
|
1052
|
-
django_cfg/modules/django_unfold/
|
|
1053
|
-
django_cfg/modules/django_unfold/callbacks/apizones.py,sha256=SHHlMGoCxBxijafdUpV91tXlg4Romw_xCpYjvdfxJsQ,5358
|
|
1054
|
-
django_cfg/modules/django_unfold/callbacks/base.py,sha256=1qVfK7aIWs9DzFWsCjP6QBF8UD48A3G1cwvIegQXcEA,9990
|
|
1055
|
-
django_cfg/modules/django_unfold/callbacks/charts.py,sha256=OhqT_w7qV5XBqQaEBXKl1IkclhCcjdI2I8phYBO0W1Y,7965
|
|
1056
|
-
django_cfg/modules/django_unfold/callbacks/commands.py,sha256=qQ8z3oeaieyJDJHKd_VZ38jksZ1NmJM-mMptNI1IV7c,1281
|
|
1057
|
-
django_cfg/modules/django_unfold/callbacks/main.py,sha256=tZBUUePVbGQC1lC2f0M57oB3qXpcDMiuNjxfbmio5w8,13532
|
|
1058
|
-
django_cfg/modules/django_unfold/callbacks/statistics.py,sha256=f6yDLywGqAgDyoEv1CzWEGVsqIrT6o-bTv4CgfeTmMo,8746
|
|
1059
|
-
django_cfg/modules/django_unfold/callbacks/system.py,sha256=7YWC_-Db6bvDxArxMNfRoTRuRq9reF67UJn8IpWel8c,6078
|
|
1060
|
-
django_cfg/modules/django_unfold/callbacks/users.py,sha256=5UHPLZyG1GWTKSO6FZyWJloWJ-fnTpCYNAgyADab7aQ,2070
|
|
1061
|
-
django_cfg/modules/django_unfold/models/__init__.py,sha256=xiTdRpH6iM9UFyE2r0114BXf1u5c5YwvwuvucLzAh5s,1082
|
|
1062
|
-
django_cfg/modules/django_unfold/models/config.py,sha256=ZUPGCYkHj8vxrRd_bDJv8rI3ugxfoXR4EovoVNUiqX4,25983
|
|
1063
|
-
django_cfg/modules/django_unfold/models/dashboard.py,sha256=EuQMnCYRutcSshPdcMWrlI4AE3IzVjp5rRaR1HIYB8s,7878
|
|
1016
|
+
django_cfg/modules/django_unfold/models/__init__.py,sha256=DcrUvmKH7Lc7XOLDE1tGb5T7FxoJ1Bt_2fm-zQsAkTU,664
|
|
1017
|
+
django_cfg/modules/django_unfold/models/config.py,sha256=uovAPt06AfzKEL1uI3WLzBhZdyq-SRzX4VEIQCGBnFM,24059
|
|
1064
1018
|
django_cfg/modules/django_unfold/models/dropdown.py,sha256=UccOL4M2LtU1d2Nbkl68zHsOQA6PSD0bHLcWfdBhthM,1270
|
|
1065
1019
|
django_cfg/modules/django_unfold/models/navigation.py,sha256=PPEeqA2HBaA1-VjADiXsesnWXVJkYyI8Iq6b_cQLJhQ,3018
|
|
1066
|
-
django_cfg/modules/django_unfold/models/tabs.py,sha256=rvU3jAyddXCNNc0IgKfYmRG9fIhV5B_W1YQlqmvN310,843
|
|
1067
|
-
django_cfg/modules/django_unfold/templates/unfold/helpers/app_list.html,sha256=ZjhHa2C8ilpAD1eZ0a7aP24aVlkkZn_jSXDGypccoc4,5919
|
|
1068
1020
|
django_cfg/registry/__init__.py,sha256=CaiL9KwqPzXlIe5-4Qr7PQu5ZxAW1HtuDIXZ7-ktRQg,538
|
|
1069
1021
|
django_cfg/registry/core.py,sha256=Vn7Q1-1MzkKAWsWzkALr8jO7gQSFfAzz17h9ZR5OtSU,3346
|
|
1070
1022
|
django_cfg/registry/exceptions.py,sha256=b4pIakeRxhT1-ST3lbAnmAQaASRBARCoah_w6vb3VF0,399
|
|
1071
1023
|
django_cfg/registry/modules.py,sha256=nA7u65pZDfsYLG5R9cE64bPIulCnrl-3CK3kpgkkXrs,1799
|
|
1072
1024
|
django_cfg/registry/services.py,sha256=l0V2twGpF9BwVlo-TTfFu8dV7GVBS7XKCsScIZXWWbc,2457
|
|
1073
|
-
django_cfg/registry/third_party.py,sha256=
|
|
1025
|
+
django_cfg/registry/third_party.py,sha256=YPcj0IsxEmh_gpJAcPvIFa21ZWnoFjcreHlXtS4UR-I,2239
|
|
1074
1026
|
django_cfg/routing/__init__.py,sha256=94No0CWltLJJvKDwqFfKU5CHo_S1OynghWqpx7PsyBY,272
|
|
1075
|
-
django_cfg/routing/callbacks.py,sha256=
|
|
1027
|
+
django_cfg/routing/callbacks.py,sha256=VDxWO05-jW0s15WCblRX84sDse-3qvvMMezjMQHNxWA,4694
|
|
1076
1028
|
django_cfg/routing/routers.py,sha256=0zunPT9TO64ZTKC2-i0ZPEXwvGYZU33WTihGxwZlTb8,2094
|
|
1077
1029
|
django_cfg/static/admin/css/constance.css,sha256=ZXwru9IgiyC1M9Egzn2ZdupIonjtU2vaK7DcVP-ufhk,945
|
|
1078
1030
|
django_cfg/static/admin/css/dashboard.css,sha256=z_v-U2TkoW5Bv5ItXr2xU6N267UI_ed1r4AnwBIYjME,2064
|
|
@@ -1089,14 +1041,14 @@ django_cfg/static/admin/js/alpine/commands-section.js,sha256=8z2MQNwZF9Tx_2EK1AY
|
|
|
1089
1041
|
django_cfg/static/admin/js/alpine/dashboard-tabs.js,sha256=ob8Q_I9lFLDv_hFERXgTyvqMDBspAGfzCxI_7slRur4,1354
|
|
1090
1042
|
django_cfg/static/admin/js/alpine/system-metrics.js,sha256=m-Fg55K_vpHXToD46PXL9twl4OBF_V9MONvbSWbQqDw,440
|
|
1091
1043
|
django_cfg/static/admin/js/alpine/toggle-section.js,sha256=T141NFmy0fRJyGGuuaCJRjJXwPam-xxtQNW1hi8BJbc,672
|
|
1092
|
-
django_cfg/static/frontend/admin/404.html,sha256=
|
|
1044
|
+
django_cfg/static/frontend/admin/404.html,sha256=wAKxOGYMrgSMTJ6U8NZfCUGIg84TOy3OngjknTEMswg,5476
|
|
1093
1045
|
django_cfg/static/frontend/admin/favicon.png,sha256=k_yaCRYwsPBknQkEIdpakdMGbORiOrpvrBQyC_SN5NM,33530
|
|
1094
|
-
django_cfg/static/frontend/admin/index.html,sha256=
|
|
1046
|
+
django_cfg/static/frontend/admin/index.html,sha256=0DPzHvtP27g8zf8pF8m3_e8I05a-6DoUaSKaTjO8SWs,3910
|
|
1095
1047
|
django_cfg/static/frontend/admin/manifest.json,sha256=Jc3Eu0qeRafLub6jlsmzQLD-g8sm1b1IU2GEu1yZz-8,663
|
|
1096
|
-
django_cfg/static/frontend/admin/404/index.html,sha256=
|
|
1097
|
-
django_cfg/static/frontend/admin/500/index.html,sha256=
|
|
1098
|
-
django_cfg/static/frontend/admin/_next/static/
|
|
1099
|
-
django_cfg/static/frontend/admin/_next/static/
|
|
1048
|
+
django_cfg/static/frontend/admin/404/index.html,sha256=wAKxOGYMrgSMTJ6U8NZfCUGIg84TOy3OngjknTEMswg,5476
|
|
1049
|
+
django_cfg/static/frontend/admin/500/index.html,sha256=4qKL6L-zc4cl7CISe-0XIMu1Bwzb0DI7YxGgKLzHSTc,5573
|
|
1050
|
+
django_cfg/static/frontend/admin/_next/static/0sN9ktsgXH48ygtGSrhfu/_buildManifest.js,sha256=yXLrcnV4JnuxsZ0lx1Rx8DQL9jP3G7_gg_lXNiXi2EQ,1532
|
|
1051
|
+
django_cfg/static/frontend/admin/_next/static/0sN9ktsgXH48ygtGSrhfu/_ssgManifest.js,sha256=b1tKoA0vjWrtmTW0cYBr96zvRk0MHTkCYOX-J_gAxn4,77
|
|
1100
1052
|
django_cfg/static/frontend/admin/_next/static/chunks/10004.28e6c5f4c1878a7f.js,sha256=SDxi6Bnx_spdfbZmruPtX-b2CkBPk6NZWuN908PJy00,1970
|
|
1101
1053
|
django_cfg/static/frontend/admin/_next/static/chunks/10045.c0de73a7d5e3b776.js,sha256=mUUE9DVL67cYOOCH5prwZEttparzaHaBCRFvBGURgAk,1661
|
|
1102
1054
|
django_cfg/static/frontend/admin/_next/static/chunks/1010.b05c484e9c210a35.js,sha256=ztx1p7LeQUHI1apKRPUThrFWGHPNuO3GRqm_Lh0p5n4,50539
|
|
@@ -2000,7 +1952,7 @@ django_cfg/static/frontend/admin/_next/static/chunks/50165.e34978dff4716896.js,s
|
|
|
2000
1952
|
django_cfg/static/frontend/admin/_next/static/chunks/50210.b7842b40b95f795d.js,sha256=6WFKLz13sUXb4G1fBpGzV4XxfDqZD38C7z-T8Chtr3w,2662
|
|
2001
1953
|
django_cfg/static/frontend/admin/_next/static/chunks/50293.4d20e7534907178e.js,sha256=SKM85tVEGjXeYu1j75t21Jl8seLNgR1_cCHTGzfqrhk,5083
|
|
2002
1954
|
django_cfg/static/frontend/admin/_next/static/chunks/50305.d1c03e1cb3e520a7.js,sha256=Gyxdjq6RlF4ZnouZePgQsytVo9HgQLE1NM9ibkIZpZ4,1787
|
|
2003
|
-
django_cfg/static/frontend/admin/_next/static/chunks/50314-
|
|
1955
|
+
django_cfg/static/frontend/admin/_next/static/chunks/50314-9443faa6df24aebf.js,sha256=XtsePrzbwGd6mYn_08sOI8aqHMdWN1lQN2hXoL7McQE,286124
|
|
2004
1956
|
django_cfg/static/frontend/admin/_next/static/chunks/50319.fd78c7f7e3f1966e.js,sha256=8IsxmIOhCujjXjQbsFMdVzbJCdYqp-UuCTbbJR2deHk,145338
|
|
2005
1957
|
django_cfg/static/frontend/admin/_next/static/chunks/50337.fbaadfbba0399132.js,sha256=4Qcq8tDyJRUAUL_l-Eqe8u8bMt1OtamNXgUnU94g_6Y,1330
|
|
2006
1958
|
django_cfg/static/frontend/admin/_next/static/chunks/50357.428ab28f2f2151ed.js,sha256=fOXR9kz64XjYn4Z36AZkc1OeCa_wreZZ_NvFOkG-KrQ,3870
|
|
@@ -3241,7 +3193,7 @@ django_cfg/static/frontend/admin/_next/static/chunks/polyfills-42372ed130431b0a.
|
|
|
3241
3193
|
django_cfg/static/frontend/admin/_next/static/chunks/webpack-5a92f81363b62aa7.js,sha256=BpRd7-UCMHlp4pJuuF0DgZAwlQp4GAfB7lzihsfIUFg,56750
|
|
3242
3194
|
django_cfg/static/frontend/admin/_next/static/chunks/pages/404-9c41b6ebfe67f15e.js,sha256=ND5dSETwARqCMhFmlfzHKFwZ-Y2cUrr-l27wJcU_7YQ,400
|
|
3243
3195
|
django_cfg/static/frontend/admin/_next/static/chunks/pages/500-906d92e10e7e65fb.js,sha256=1FQU4FxM1R0at5g5xssAcA0eetDs7fRGn4cWgJwqpkk,402
|
|
3244
|
-
django_cfg/static/frontend/admin/_next/static/chunks/pages/_app-
|
|
3196
|
+
django_cfg/static/frontend/admin/_next/static/chunks/pages/_app-c7dcd3aa616fab68.js,sha256=Rebm1sxE9Pg1A8LJOuR-rTMRKPfT2XJ_WVZJUk7afa4,3039148
|
|
3245
3197
|
django_cfg/static/frontend/admin/_next/static/chunks/pages/_error-2550e721b11b7946.js,sha256=ncM-uRFZchWGfc6E6IeRrXGaUu3x61bc0l21SXFeXYI,454
|
|
3246
3198
|
django_cfg/static/frontend/admin/_next/static/chunks/pages/auth-a872607f98742e5a.js,sha256=RhpzAFpGuXVTrg935pLfhLoMJXrMlwxw_1al5nzs4d8,613
|
|
3247
3199
|
django_cfg/static/frontend/admin/_next/static/chunks/pages/index-fe4802f9df0ac052.js,sha256=aEGuFbjsCr4UYy9aRZ3hncqyiBpzKKHUfJZrnaDX9PE,925
|
|
@@ -3250,7 +3202,7 @@ django_cfg/static/frontend/admin/_next/static/chunks/pages/legal/cookies-97d2798
|
|
|
3250
3202
|
django_cfg/static/frontend/admin/_next/static/chunks/pages/legal/privacy-1d5e6cd94689247e.js,sha256=JHCXHKgkNrkK_bkuFpZfQFPEoEA3l6Uc5KARzg8NB4o,3193
|
|
3251
3203
|
django_cfg/static/frontend/admin/_next/static/chunks/pages/legal/security-55e49700e7a01f5a.js,sha256=PWTV28-GgjbH0EC3USKMdMqHBrefQ5c7R_RUeBa5MRs,3402
|
|
3252
3204
|
django_cfg/static/frontend/admin/_next/static/chunks/pages/legal/terms-14c02bb2d3198352.js,sha256=u9cobQPVDULq9hBfKIocWPej4YQGJVV-7m5jNMCNcoI,2846
|
|
3253
|
-
django_cfg/static/frontend/admin/_next/static/chunks/pages/private/centrifugo-
|
|
3205
|
+
django_cfg/static/frontend/admin/_next/static/chunks/pages/private/centrifugo-f9ecbc3ae0052a03.js,sha256=UhC23QtCj2i_RF54Lvvh32WwSo8FRPJ-e73MbM809_Y,63830
|
|
3254
3206
|
django_cfg/static/frontend/admin/_next/static/chunks/pages/private/profile-5cd57aac826857fd.js,sha256=Xoy3yOjG30mDmZ3DvEVPOzHjNzwJAAdxcYWgd6U7_dg,472
|
|
3255
3207
|
django_cfg/static/frontend/admin/_next/static/chunks/pages/private/ui-383e7f474cf22a18.js,sha256=iraiY_BWu7ah5UE7C5fF1t8bVCczpATcXI7famD8AxM,469
|
|
3256
3208
|
django_cfg/static/frontend/admin/_next/static/css/3063068f0d5a8a00.css,sha256=xEfh1eLH7VL1f_nV1evBTN1wVyl9xeGrntVcQ1_0qoE,132138
|
|
@@ -3261,15 +3213,15 @@ django_cfg/static/frontend/admin/_next/static/media/ba9851c3c22cd980-s.woff2,sha
|
|
|
3261
3213
|
django_cfg/static/frontend/admin/_next/static/media/c5fe6dc8356a8c31-s.woff2,sha256=ouLHg8pvnCBIboHnKieSA-hnMLv48B_2pe6dvQnhwnE,11272
|
|
3262
3214
|
django_cfg/static/frontend/admin/_next/static/media/df0a9ae256c0569c-s.woff2,sha256=jbAP9Gxnsizai-2GWs9wd2UcrI0oQdW0CYBVa0iWGTE,10280
|
|
3263
3215
|
django_cfg/static/frontend/admin/_next/static/media/e4af272ccee01ff0-s.p.woff2,sha256=yUB2RZPQ_l1Za-MnynVYhV4BgDn7eFCaohkh_TZEw-Q,48432
|
|
3264
|
-
django_cfg/static/frontend/admin/auth/index.html,sha256=
|
|
3265
|
-
django_cfg/static/frontend/admin/legal/cookies/index.html,sha256=
|
|
3266
|
-
django_cfg/static/frontend/admin/legal/privacy/index.html,sha256=
|
|
3267
|
-
django_cfg/static/frontend/admin/legal/security/index.html,sha256=
|
|
3268
|
-
django_cfg/static/frontend/admin/legal/terms/index.html,sha256=
|
|
3269
|
-
django_cfg/static/frontend/admin/private/index.html,sha256=
|
|
3270
|
-
django_cfg/static/frontend/admin/private/centrifugo/index.html,sha256=
|
|
3271
|
-
django_cfg/static/frontend/admin/private/profile/index.html,sha256=
|
|
3272
|
-
django_cfg/static/frontend/admin/private/ui/index.html,sha256=
|
|
3216
|
+
django_cfg/static/frontend/admin/auth/index.html,sha256=pVgCHnW4ViNQfC1owyoBBrMep9GCy9ijBe1rTp_Qi0I,3568
|
|
3217
|
+
django_cfg/static/frontend/admin/legal/cookies/index.html,sha256=KDZ7ixQaxHJaBtIwHEnKzED_GYlfGu5ZhRYVMy7v2rc,6167
|
|
3218
|
+
django_cfg/static/frontend/admin/legal/privacy/index.html,sha256=qkhGj23bhtgCZ5GX7cGJ2LfcywGGCVd4dQjP89xeCEs,6208
|
|
3219
|
+
django_cfg/static/frontend/admin/legal/security/index.html,sha256=yKEyfmzGMBq-eaKJdTrnYbXaN00snfXyvXjk3G2ReZ0,6529
|
|
3220
|
+
django_cfg/static/frontend/admin/legal/terms/index.html,sha256=sd05bTpkMNXRLe7j7i89_-2urYTyK2fUj4HDHd0o-nw,5943
|
|
3221
|
+
django_cfg/static/frontend/admin/private/index.html,sha256=0z5qwnchECvBYqVs2nLTmniS-ePqj_NPWiheti-n8PA,17372
|
|
3222
|
+
django_cfg/static/frontend/admin/private/centrifugo/index.html,sha256=q65bfGcVov1MEw5n6RwXFzHDA1g0KnacOIEPrFIg-EY,14559
|
|
3223
|
+
django_cfg/static/frontend/admin/private/profile/index.html,sha256=3iHw-rWdN6VSefoMb-ZJnSMSlXHSDId073HKiXYYiEY,3531
|
|
3224
|
+
django_cfg/static/frontend/admin/private/ui/index.html,sha256=sytgt0ChzxO734i4Wwo_B8CrLh7lfXcpq5fa-bTNFAY,31902
|
|
3273
3225
|
django_cfg/static/frontend/admin/static/logos/192x192.png,sha256=k_yaCRYwsPBknQkEIdpakdMGbORiOrpvrBQyC_SN5NM,33530
|
|
3274
3226
|
django_cfg/static/frontend/admin/static/logos/384x384.png,sha256=T2JZG0LfPv-k-8brPjbKPTlTQqfivmak1qr2ijJ6ckg,133486
|
|
3275
3227
|
django_cfg/static/frontend/admin/static/logos/512x512.png,sha256=_fYvtvBJTTef8nUlZ-YyCa7L6Tt8eZTt14N4LCRJPA0,244293
|
|
@@ -3296,62 +3248,6 @@ django_cfg/static/js/api/tasks/client.mjs,sha256=tIy8K-finXzTUL9kOo_L4Q1kchDaHyu
|
|
|
3296
3248
|
django_cfg/static/js/api/tasks/index.mjs,sha256=yCY1GzdD-RtFZ3pAfk1l0msgO1epyo0lsGCjH0g1Afc,294
|
|
3297
3249
|
django_cfg/templates/__init__.py,sha256=IzLjt-a7VIJ0OutmAE1_-w0_LpL2u0MgGpnIabjZuW8,19
|
|
3298
3250
|
django_cfg/templates/admin/index.html,sha256=pBNPOeEpE6WFZkH7bTlx_Tf06WIad6xVuTMn0Uw0Lvk,13861
|
|
3299
|
-
django_cfg/templates/admin/sections/commands_section.html,sha256=YnJzYMWu2OGFkbFhBS45F26ZGt8M6_GAonekjRywldA,145
|
|
3300
|
-
django_cfg/templates/admin/sections/documentation_section.html,sha256=WfbU_2K2nUQutIhNNTRn2EsygotC8yBbeNkR6QjN_vw,150
|
|
3301
|
-
django_cfg/templates/admin/sections/overview_section.html,sha256=hXGoAqseZKFUqqASEnk0DRxjI6JcBe0hGpY8i-KXn_s,145
|
|
3302
|
-
django_cfg/templates/admin/sections/stats_section.html,sha256=dGO1oN76GLxmIz-xHFhWhWyD3HpkabsfHUbDMYhxHSA,142
|
|
3303
|
-
django_cfg/templates/admin/sections/system_section.html,sha256=vU0iqvs5pig6iWupvPULa_Cui-aocSkS-sRbk-i21Bc,143
|
|
3304
|
-
django_cfg/templates/admin/sections/widgets_section.html,sha256=AuZoW7a7D4vPzN-oAZTe1QFiG1chR08IMrCaj-Uggi4,423
|
|
3305
|
-
django_cfg/templates/admin_old/index.html,sha256=RX8ouWATqSDY4rlTS8H8rQYYB0hzME1hXZfYbWNLUok,2146
|
|
3306
|
-
django_cfg/templates/admin_old/index_new.html,sha256=B5nC6TMjHCvbyX-SG7kIyLbFyGUNm-86Uo694EdfUZQ,4262
|
|
3307
|
-
django_cfg/templates/admin_old/components/action_grid.html,sha256=Ol6UqHR6CQkrLzOIqIWeBk-fu3dYu2x1xxjaL6HnXRQ,2840
|
|
3308
|
-
django_cfg/templates/admin_old/components/card.html,sha256=gOW8MBvRiWPQdoSYg_MH7KQ8o_WTRC5anyefRcPtRjM,2167
|
|
3309
|
-
django_cfg/templates/admin_old/components/data_table.html,sha256=zD8B_zv2VQh-cikyLGPTzzmtmnB97MDItK38P3po6OE,2799
|
|
3310
|
-
django_cfg/templates/admin_old/components/metric_card.html,sha256=w7I7U-WCBIawe28Tieg9pvUJrWreCvbB-UfwoABrtRU,1664
|
|
3311
|
-
django_cfg/templates/admin_old/components/modal.html,sha256=UPZA5XbQtQJUDRXVzQqV9fv84_Vce7W74rzQmHm-T9I,2841
|
|
3312
|
-
django_cfg/templates/admin_old/components/progress_bar.html,sha256=0RyPxo_JaqYBNkNK2lGgVMVdyaipECfjzdkcg3vtU1U,612
|
|
3313
|
-
django_cfg/templates/admin_old/components/section_header.html,sha256=l_skppG1YPhlroRaejySDcUcdWpCarn1VyD0GJW35zQ,933
|
|
3314
|
-
django_cfg/templates/admin_old/components/stat_item.html,sha256=XCxgUumBxNWJvWVyZD-XPz6tNimZMFGr-C8-ezOGLH0,1754
|
|
3315
|
-
django_cfg/templates/admin_old/components/stats_grid.html,sha256=4Mt2OgDjmSeEXdPZ8YnnvvLDuIc74m6E5ZivrDhmqcs,3745
|
|
3316
|
-
django_cfg/templates/admin_old/components/status_badge.html,sha256=UysFQzIwmg6Lufl1F-IIcRVEb-iKiOzuAZ7tkcVH6OU,1587
|
|
3317
|
-
django_cfg/templates/admin_old/components/user_avatar.html,sha256=ChID6GB9iyHnYsqkbNLRmXKXZOn_u8GVa1dd_HZzQH8,1280
|
|
3318
|
-
django_cfg/templates/admin_old/constance/change_list.html,sha256=MgiCPM6bORykEsayIuT9uxH3NhnmfDbk6hyzcD_zWBQ,3704
|
|
3319
|
-
django_cfg/templates/admin_old/constance/includes/default_value.html,sha256=dHu28vMi0OOn4KmRseMwWiWq51fz7EFdz4RZB6_4jrk,1301
|
|
3320
|
-
django_cfg/templates/admin_old/constance/includes/fieldset_header.html,sha256=kAyS0jbWNwk7aBcI7G4rx-kvVw315m21kxzSDii-qig,838
|
|
3321
|
-
django_cfg/templates/admin_old/constance/includes/results_list.html,sha256=OqWyyTuM7iWNjLc1yVp3YHFJk3APxk_Qto0JtssMX2Q,558
|
|
3322
|
-
django_cfg/templates/admin_old/constance/includes/setting_row.html,sha256=Q4djpNLtZhh_dh_ZoX1PPXN9YUv5AMG49HATErl274o,2601
|
|
3323
|
-
django_cfg/templates/admin_old/constance/includes/table_headers.html,sha256=_flMPr9mSZOO66Jg0F4OEXlGklRyH-C0_ImfGu-eOLM,677
|
|
3324
|
-
django_cfg/templates/admin_old/examples/component_class_example.html,sha256=srpDyHdwayYiQV3PiFeFxNb6Cnx6cYqtVt2l-QhiWWM,6215
|
|
3325
|
-
django_cfg/templates/admin_old/import_export/change_list_export.html,sha256=oFBsnpgZ24gV4--UpPRLAqr_kU6-Y3MAudpHQKigKQY,1241
|
|
3326
|
-
django_cfg/templates/admin_old/import_export/change_list_import.html,sha256=jL7Dhjcbx8IfzY-ltlxoWLvF97tD9B77moj8Mh6sRjY,1214
|
|
3327
|
-
django_cfg/templates/admin_old/import_export/change_list_import_export.html,sha256=KWnPbkv_kP5TlAKBRutbk_eFTqPXDt6_SmxXULE94iE,1840
|
|
3328
|
-
django_cfg/templates/admin_old/layouts/base_dashboard.html,sha256=8d5WmgT8JzfwxODflLjgsw3cAoW50ikyGwPEHoO4u20,2019
|
|
3329
|
-
django_cfg/templates/admin_old/layouts/dashboard_with_tabs.html,sha256=wK43wZ4Zfe3PTGUt08CQm28E5IKBx0W6y6skXtHUUNs,6771
|
|
3330
|
-
django_cfg/templates/admin_old/sections/commands_section.html,sha256=yiY9OqoQHS6DZUcnuJv_rlsAMs6cmwlXEecbQDC1rE8,29498
|
|
3331
|
-
django_cfg/templates/admin_old/sections/documentation_section.html,sha256=gRZveCEaE8bnNCvEqXWhl5RefWEKDZJAd_Li2y-rlVY,9791
|
|
3332
|
-
django_cfg/templates/admin_old/sections/overview_section.html,sha256=gfhjBzQBtZQAj1DnjhFE6efgXFWb4GotIgW6kyRVE-g,4726
|
|
3333
|
-
django_cfg/templates/admin_old/sections/stats_section.html,sha256=iUF-ILAkHBHMb7p2pZXsn_ILYd68mmyr7uFH4He2TKg,1524
|
|
3334
|
-
django_cfg/templates/admin_old/sections/system_section.html,sha256=jcbLoIF-EIodppWFrf8zs85zxdAfFpjdcNuiGIwmjNE,4766
|
|
3335
|
-
django_cfg/templates/admin_old/sections/widgets_section.html,sha256=xgRF-M1iuN4E4QNuiyrem1XHs7UKzdPribeWu91_J5w,6444
|
|
3336
|
-
django_cfg/templates/admin_old/snippets/components/activity_tracker.html,sha256=3PDcrh75eYCIcK9EBx3f32vsfPlmsouUTGkDEKH0omc,3251
|
|
3337
|
-
django_cfg/templates/admin_old/snippets/components/charts_section.html,sha256=BOyuftWPWLC7dnk2howye2b0X0-6ESEORaWUz2m1aQc,6512
|
|
3338
|
-
django_cfg/templates/admin_old/snippets/components/django_commands.html,sha256=lsxI3pEPJfCTb-uvXOZOhb9T7NAZJcJ7nk2VpO74k4Y,17382
|
|
3339
|
-
django_cfg/templates/admin_old/snippets/components/quick_actions.html,sha256=XLSh1MpUryOb9khy-EfCGuHdxwXKIOt8uZlf75GC4Ww,3942
|
|
3340
|
-
django_cfg/templates/admin_old/snippets/components/recent_activity_improved.html,sha256=Gab8lyRiQGE6yiiF6Z4Y5lAuzj7L4ZSvRCpoAMLsuQM,1000
|
|
3341
|
-
django_cfg/templates/admin_old/snippets/components/recent_users_table.html,sha256=TRXnI88LprGgwDRslT8JAAnvVgV7CviAs5uVS_Bxi98,6550
|
|
3342
|
-
django_cfg/templates/admin_old/snippets/components/stats_cards.html,sha256=8RAtDTIcq7OBcdk_TWVovJ_Hk8UIlj5teuqnO2w0TAs,181
|
|
3343
|
-
django_cfg/templates/admin_old/snippets/components/stats_tiles.html,sha256=ELPz7ujZqZ55ejMIRLZt29dOn4k50L9F0u8cHgvMWPo,8206
|
|
3344
|
-
django_cfg/templates/admin_old/snippets/components/system_health.html,sha256=3zsx3g1pu64lO0BdlpIIUo8bR4LiG1mtBPqtrAzMOcA,1563
|
|
3345
|
-
django_cfg/templates/admin_old/snippets/components/system_metrics.html,sha256=_otvxSAiBjIfZcCR_X3QaAvLaDzbwpfdXr1-LgADlY0,13284
|
|
3346
|
-
django_cfg/templates/admin_old/snippets/components/user_permissions.html,sha256=ZFunUwWV7LRmtctn4m6kSirWZ5voIY4haJljENQ24eo,3830
|
|
3347
|
-
django_cfg/templates/admin_old/snippets/tabs/app_stats_tab.html,sha256=Cx9Hd7aoeMCpBPtZ1BAB35dkyzDSNSVy53z6Kf0Zc8s,14369
|
|
3348
|
-
django_cfg/templates/admin_old/snippets/tabs/commands_tab.html,sha256=B7CS5H_rO9Uu5p48F4J0kx-CPXCB6zQXJzlpOcq-7i8,5952
|
|
3349
|
-
django_cfg/templates/admin_old/snippets/tabs/documentation_tab.html,sha256=XOSiMIrlk477KO27_I3Vv-Z2jWyT_TxpfCyWYsjGil0,1811
|
|
3350
|
-
django_cfg/templates/admin_old/snippets/tabs/overview_tab.html,sha256=uJTQ2HGtIesBcxBk7WAdBJO1VMK_KZH91ckp5DgEvQ0,3927
|
|
3351
|
-
django_cfg/templates/admin_old/snippets/tabs/stats_tab.html,sha256=jIqSnp4WTo2jAzzMqo9As6z5PykWsO_V1VwBEpTzZ5E,5170
|
|
3352
|
-
django_cfg/templates/admin_old/snippets/tabs/users_tab.html,sha256=04D05VSeidn2qJnQmktVI7TNlm7tNcXYXJAsk32U5hY,2813
|
|
3353
|
-
django_cfg/templates/admin_old/snippets/tabs/widgets_tab.html,sha256=1TxvLPjydcOQRVdaEzGaIq8QZD_CmGY58X9wcqNrtpM,1699
|
|
3354
|
-
django_cfg/templates/admin_old/snippets/zones/zones_table.html,sha256=WtaI-x16LijochRy7uFj8xyUeqcCqhenF9xKRW_JQWE,11879
|
|
3355
3251
|
django_cfg/templates/emails/base_email.html,sha256=TWcvYa2IHShlF_E8jf1bWZStRO0v8G4L_GexPxvz6XQ,8836
|
|
3356
3252
|
django_cfg/templates/unfold/layouts/skeleton.html,sha256=2ArkcNZ34mFs30cOAsTQ1EZiDXcB0aVxkO71lJq9SLE,718
|
|
3357
3253
|
django_cfg/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -3363,9 +3259,9 @@ django_cfg/utils/version_check.py,sha256=WO51J2m2e-wVqWCRwbultEwu3q1lQasV67Mw2aa
|
|
|
3363
3259
|
django_cfg/CHANGELOG.md,sha256=jtT3EprqEJkqSUh7IraP73vQ8PmKUMdRtznQsEnqDZk,2052
|
|
3364
3260
|
django_cfg/CONTRIBUTING.md,sha256=DU2kyQ6PU0Z24ob7O_OqKWEYHcZmJDgzw-lQCmu6uBg,3041
|
|
3365
3261
|
django_cfg/LICENSE,sha256=xHuytiUkSZCRG3N11nk1X6q1_EGQtv6aL5O9cqNRhKE,1071
|
|
3366
|
-
django_cfg/pyproject.toml,sha256=
|
|
3367
|
-
django_cfg-1.4.
|
|
3368
|
-
django_cfg-1.4.
|
|
3369
|
-
django_cfg-1.4.
|
|
3370
|
-
django_cfg-1.4.
|
|
3371
|
-
django_cfg-1.4.
|
|
3262
|
+
django_cfg/pyproject.toml,sha256=0rfO4Xwsq18MK_cOmo63nGZb-ZM64imtHCN-htZr_1Q,8164
|
|
3263
|
+
django_cfg-1.4.89.dist-info/METADATA,sha256=fFl1dXD1QkiX0KRZH7t6gJGo3BaJJbtPWTMHmfpa1sM,22624
|
|
3264
|
+
django_cfg-1.4.89.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
3265
|
+
django_cfg-1.4.89.dist-info/entry_points.txt,sha256=Ucmde4Z2wEzgb4AggxxZ0zaYDb9HpyE5blM3uJ0_VNg,56
|
|
3266
|
+
django_cfg-1.4.89.dist-info/licenses/LICENSE,sha256=xHuytiUkSZCRG3N11nk1X6q1_EGQtv6aL5O9cqNRhKE,1071
|
|
3267
|
+
django_cfg-1.4.89.dist-info/RECORD,,
|
|
@@ -1,260 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Centrifugo Dashboard Styles
|
|
3
|
-
* Purple/Magenta theme for Centrifugo monitoring
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
/* Stat Cards */
|
|
7
|
-
.stat-card {
|
|
8
|
-
transition: transform 0.2s, box-shadow 0.2s;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
.stat-card:hover {
|
|
12
|
-
transform: translateY(-2px);
|
|
13
|
-
box-shadow: 0 10px 25px rgba(168, 85, 247, 0.15);
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
/* Pulse Animation */
|
|
17
|
-
.pulse-dot {
|
|
18
|
-
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
@keyframes pulse {
|
|
22
|
-
0%, 100% {
|
|
23
|
-
opacity: 1;
|
|
24
|
-
}
|
|
25
|
-
50% {
|
|
26
|
-
opacity: 0.5;
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
/* Tab Navigation */
|
|
31
|
-
.tab-button {
|
|
32
|
-
transition: all 0.2s ease;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
.tab-button:hover {
|
|
36
|
-
border-bottom-color: rgb(168 85 247 / 0.5);
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.tab-button.active {
|
|
40
|
-
color: rgb(168 85 247);
|
|
41
|
-
border-bottom-color: rgb(168 85 247);
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
/* Dark mode adjustments */
|
|
45
|
-
@media (prefers-color-scheme: dark) {
|
|
46
|
-
.stat-card:hover {
|
|
47
|
-
box-shadow: 0 10px 25px rgba(168, 85, 247, 0.25);
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
.tab-button.active {
|
|
51
|
-
color: rgb(192 132 252);
|
|
52
|
-
border-bottom-color: rgb(192 132 252);
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
/* Tab Panels */
|
|
57
|
-
.tab-panel {
|
|
58
|
-
animation: fadeIn 0.3s ease-in;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
@keyframes fadeIn {
|
|
62
|
-
from {
|
|
63
|
-
opacity: 0;
|
|
64
|
-
transform: translateY(10px);
|
|
65
|
-
}
|
|
66
|
-
to {
|
|
67
|
-
opacity: 1;
|
|
68
|
-
transform: translateY(0);
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
/* Charts */
|
|
73
|
-
canvas {
|
|
74
|
-
max-height: 300px;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
/* Status Indicators */
|
|
78
|
-
.status-badge {
|
|
79
|
-
display: inline-flex;
|
|
80
|
-
align-items: center;
|
|
81
|
-
padding: 0.25rem 0.75rem;
|
|
82
|
-
border-radius: 9999px;
|
|
83
|
-
font-size: 0.75rem;
|
|
84
|
-
font-weight: 500;
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
.status-badge.success {
|
|
88
|
-
background-color: rgb(220 252 231);
|
|
89
|
-
color: rgb(22 101 52);
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
.status-badge.failed {
|
|
93
|
-
background-color: rgb(254 226 226);
|
|
94
|
-
color: rgb(153 27 27);
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
.status-badge.timeout {
|
|
98
|
-
background-color: rgb(254 243 199);
|
|
99
|
-
color: rgb(146 64 14);
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
/* Dark mode status badges */
|
|
103
|
-
@media (prefers-color-scheme: dark) {
|
|
104
|
-
.status-badge.success {
|
|
105
|
-
background-color: rgb(22 101 52 / 0.2);
|
|
106
|
-
color: rgb(134 239 172);
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
.status-badge.failed {
|
|
110
|
-
background-color: rgb(153 27 27 / 0.2);
|
|
111
|
-
color: rgb(252 165 165);
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
.status-badge.timeout {
|
|
115
|
-
background-color: rgb(146 64 14 / 0.2);
|
|
116
|
-
color: rgb(253 224 71);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
/* Table Styles */
|
|
121
|
-
table tbody tr {
|
|
122
|
-
transition: background-color 0.15s ease;
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
table tbody tr:hover {
|
|
126
|
-
background-color: rgb(250 245 255);
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
@media (prefers-color-scheme: dark) {
|
|
130
|
-
table tbody tr:hover {
|
|
131
|
-
background-color: rgb(88 28 135 / 0.1);
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
|
|
135
|
-
/* Quick Test Buttons */
|
|
136
|
-
.quick-test-btn {
|
|
137
|
-
transition: all 0.2s ease;
|
|
138
|
-
cursor: pointer;
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
.quick-test-btn:active {
|
|
142
|
-
transform: scale(0.98);
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
/* Loading Spinner */
|
|
146
|
-
.spinner {
|
|
147
|
-
border: 2px solid rgba(168, 85, 247, 0.2);
|
|
148
|
-
border-top-color: rgb(168, 85, 247);
|
|
149
|
-
border-radius: 50%;
|
|
150
|
-
width: 20px;
|
|
151
|
-
height: 20px;
|
|
152
|
-
animation: spin 0.6s linear infinite;
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
@keyframes spin {
|
|
156
|
-
to {
|
|
157
|
-
transform: rotate(360deg);
|
|
158
|
-
}
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
/* Progress Bar */
|
|
162
|
-
.progress-bar {
|
|
163
|
-
transition: width 0.3s ease;
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
/* Notification Styles */
|
|
167
|
-
.notification {
|
|
168
|
-
animation: slideIn 0.3s ease-out;
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
@keyframes slideIn {
|
|
172
|
-
from {
|
|
173
|
-
transform: translateX(100%);
|
|
174
|
-
opacity: 0;
|
|
175
|
-
}
|
|
176
|
-
to {
|
|
177
|
-
transform: translateX(0);
|
|
178
|
-
opacity: 1;
|
|
179
|
-
}
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
/* Success Rate Color Coding */
|
|
183
|
-
.success-rate-high {
|
|
184
|
-
color: rgb(22 163 74);
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
.success-rate-medium {
|
|
188
|
-
color: rgb(234 179 8);
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
.success-rate-low {
|
|
192
|
-
color: rgb(220 38 38);
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
@media (prefers-color-scheme: dark) {
|
|
196
|
-
.success-rate-high {
|
|
197
|
-
color: rgb(134 239 172);
|
|
198
|
-
}
|
|
199
|
-
|
|
200
|
-
.success-rate-medium {
|
|
201
|
-
color: rgb(253 224 71);
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
.success-rate-low {
|
|
205
|
-
color: rgb(252 165 165);
|
|
206
|
-
}
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
/* ACK Badge */
|
|
210
|
-
.ack-badge {
|
|
211
|
-
display: inline-flex;
|
|
212
|
-
align-items: center;
|
|
213
|
-
gap: 0.25rem;
|
|
214
|
-
padding: 0.125rem 0.5rem;
|
|
215
|
-
border-radius: 0.375rem;
|
|
216
|
-
font-size: 0.75rem;
|
|
217
|
-
font-weight: 500;
|
|
218
|
-
background-color: rgb(243 232 255);
|
|
219
|
-
color: rgb(107 33 168);
|
|
220
|
-
}
|
|
221
|
-
|
|
222
|
-
@media (prefers-color-scheme: dark) {
|
|
223
|
-
.ack-badge {
|
|
224
|
-
background-color: rgb(107 33 168 / 0.2);
|
|
225
|
-
color: rgb(216 180 254);
|
|
226
|
-
}
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
/* Message ID Badge */
|
|
230
|
-
.message-id-badge {
|
|
231
|
-
font-family: ui-monospace, 'Cascadia Code', 'Source Code Pro', Menlo, Consolas, 'DejaVu Sans Mono', monospace;
|
|
232
|
-
font-size: 0.75rem;
|
|
233
|
-
color: rgb(88 28 135);
|
|
234
|
-
background-color: rgb(250 245 255);
|
|
235
|
-
padding: 0.125rem 0.5rem;
|
|
236
|
-
border-radius: 0.25rem;
|
|
237
|
-
}
|
|
238
|
-
|
|
239
|
-
@media (prefers-color-scheme: dark) {
|
|
240
|
-
.message-id-badge {
|
|
241
|
-
color: rgb(216 180 254);
|
|
242
|
-
background-color: rgb(88 28 135 / 0.2);
|
|
243
|
-
}
|
|
244
|
-
}
|
|
245
|
-
|
|
246
|
-
/* Responsive adjustments */
|
|
247
|
-
@media (max-width: 768px) {
|
|
248
|
-
.stat-card {
|
|
249
|
-
padding: 1rem;
|
|
250
|
-
}
|
|
251
|
-
|
|
252
|
-
.tab-button {
|
|
253
|
-
font-size: 0.875rem;
|
|
254
|
-
padding: 0.5rem 0.75rem;
|
|
255
|
-
}
|
|
256
|
-
|
|
257
|
-
.tab-button .material-icons {
|
|
258
|
-
display: none;
|
|
259
|
-
}
|
|
260
|
-
}
|