django-unfold 0.43.0__py3-none-any.whl → 0.44.0__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (130) hide show
  1. {django_unfold-0.43.0.dist-info → django_unfold-0.44.0.dist-info}/METADATA +1 -1
  2. {django_unfold-0.43.0.dist-info → django_unfold-0.44.0.dist-info}/RECORD +129 -117
  3. {django_unfold-0.43.0.dist-info → django_unfold-0.44.0.dist-info}/WHEEL +1 -1
  4. unfold/contrib/filters/admin.py +5 -5
  5. unfold/contrib/filters/templates/unfold/filters/filters_date_range.html +1 -1
  6. unfold/contrib/filters/templates/unfold/filters/filters_datetime_range.html +1 -1
  7. unfold/contrib/filters/templates/unfold/filters/filters_numeric_range.html +1 -1
  8. unfold/contrib/filters/templates/unfold/filters/filters_numeric_single.html +1 -1
  9. unfold/contrib/filters/templates/unfold/filters/filters_numeric_slider.html +3 -3
  10. unfold/contrib/forms/templates/unfold/forms/array.html +3 -3
  11. unfold/contrib/forms/templates/unfold/forms/helpers/toolbar.html +25 -25
  12. unfold/contrib/forms/widgets.py +5 -5
  13. unfold/contrib/guardian/templates/admin/guardian/model/obj_perms_manage.html +1 -1
  14. unfold/contrib/guardian/templates/admin/guardian/model/obj_perms_manage_group.html +2 -2
  15. unfold/contrib/guardian/templates/admin/guardian/model/obj_perms_manage_user.html +2 -2
  16. unfold/contrib/guardian/templates/unfold/guardian/group_form.html +8 -8
  17. unfold/contrib/guardian/templates/unfold/guardian/user_form.html +8 -8
  18. unfold/contrib/import_export/templates/admin/import_export/change_form.html +1 -1
  19. unfold/contrib/import_export/templates/admin/import_export/export.html +4 -4
  20. unfold/contrib/import_export/templates/admin/import_export/import_confirm.html +4 -4
  21. unfold/contrib/import_export/templates/admin/import_export/import_errors.html +2 -2
  22. unfold/contrib/import_export/templates/admin/import_export/import_form.html +2 -2
  23. unfold/contrib/import_export/templates/admin/import_export/import_preview.html +5 -5
  24. unfold/contrib/import_export/templates/admin/import_export/import_validation.html +8 -8
  25. unfold/contrib/simple_history/templates/simple_history/object_history.html +2 -2
  26. unfold/contrib/simple_history/templates/simple_history/object_history_form.html +1 -1
  27. unfold/contrib/simple_history/templates/simple_history/object_history_list.html +9 -9
  28. unfold/contrib/simple_history/templates/simple_history/submit_line.html +4 -4
  29. unfold/forms.py +13 -2
  30. unfold/settings.py +20 -7
  31. unfold/sites.py +23 -8
  32. unfold/static/admin/js/inlines.js +2 -2
  33. unfold/static/unfold/css/styles.css +1 -1
  34. unfold/static/unfold/js/alpine.resize.js +1 -0
  35. unfold/static/unfold/js/app.js +52 -71
  36. unfold/static/unfold/js/htmx.js +1 -1
  37. unfold/styles.css +67 -71
  38. unfold/templates/admin/actions.html +19 -17
  39. unfold/templates/admin/app_list.html +3 -3
  40. unfold/templates/admin/auth/user/add_form.html +1 -1
  41. unfold/templates/admin/auth/user/change_password.html +2 -2
  42. unfold/templates/admin/base.html +1 -1
  43. unfold/templates/admin/change_list.html +24 -30
  44. unfold/templates/admin/change_list_results.html +40 -6
  45. unfold/templates/admin/date_hierarchy.html +1 -1
  46. unfold/templates/admin/delete_confirmation.html +7 -7
  47. unfold/templates/admin/delete_selected_confirmation.html +7 -7
  48. unfold/templates/admin/edit_inline/stacked.html +4 -4
  49. unfold/templates/admin/edit_inline/tabular.html +8 -151
  50. unfold/templates/admin/filter.html +7 -7
  51. unfold/templates/admin/includes/fieldset.html +2 -2
  52. unfold/templates/admin/includes/object_delete_summary.html +1 -1
  53. unfold/templates/admin/login.html +4 -4
  54. unfold/templates/admin/nav_sidebar.html +1 -8
  55. unfold/templates/admin/object_history.html +7 -7
  56. unfold/templates/admin/pagination.html +36 -30
  57. unfold/templates/admin/search_form.html +11 -9
  58. unfold/templates/admin/submit_line.html +11 -11
  59. unfold/templates/auth/widgets/read_only_password_hash.html +1 -1
  60. unfold/templates/registration/logged_out.html +3 -3
  61. unfold/templates/registration/password_change_done.html +1 -1
  62. unfold/templates/registration/password_change_form.html +1 -1
  63. unfold/templates/unfold/components/button.html +1 -1
  64. unfold/templates/unfold/components/card.html +4 -4
  65. unfold/templates/unfold/components/chart/cohort.html +1 -1
  66. unfold/templates/unfold/components/navigation.html +2 -2
  67. unfold/templates/unfold/components/separator.html +1 -1
  68. unfold/templates/unfold/components/table.html +6 -6
  69. unfold/templates/unfold/components/tracker.html +1 -1
  70. unfold/templates/unfold/helpers/account_links.html +6 -6
  71. unfold/templates/unfold/helpers/actions_row.html +5 -5
  72. unfold/templates/unfold/helpers/add_link.html +1 -1
  73. unfold/templates/unfold/helpers/app_list.html +10 -10
  74. unfold/templates/unfold/helpers/app_list_default.html +10 -10
  75. unfold/templates/unfold/helpers/boolean.html +1 -1
  76. unfold/templates/unfold/helpers/breadcrumb_item.html +1 -1
  77. unfold/templates/unfold/helpers/change_list_actions.html +13 -0
  78. unfold/templates/unfold/helpers/change_list_filter.html +31 -0
  79. unfold/templates/unfold/helpers/change_list_filter_actions.html +23 -0
  80. unfold/templates/unfold/helpers/delete_submit_line.html +2 -2
  81. unfold/templates/unfold/helpers/display_header.html +3 -3
  82. unfold/templates/unfold/helpers/edit_inline/tabular_delete.html +13 -0
  83. unfold/templates/unfold/helpers/edit_inline/tabular_error.html +8 -0
  84. unfold/templates/unfold/helpers/edit_inline/tabular_field.html +25 -0
  85. unfold/templates/unfold/helpers/edit_inline/tabular_heading.html +25 -0
  86. unfold/templates/unfold/helpers/edit_inline/tabular_row.html +27 -0
  87. unfold/templates/unfold/helpers/edit_inline/tabular_title.html +49 -0
  88. unfold/templates/unfold/helpers/field_readonly.html +1 -1
  89. unfold/templates/unfold/helpers/field_readonly_value.html +1 -1
  90. unfold/templates/unfold/helpers/fieldset_row.html +5 -73
  91. unfold/templates/unfold/helpers/fieldset_row_checkbox.html +45 -0
  92. unfold/templates/unfold/helpers/fieldset_row_field.html +21 -0
  93. unfold/templates/unfold/helpers/fieldsets_tabs.html +2 -2
  94. unfold/templates/unfold/helpers/header.html +1 -1
  95. unfold/templates/unfold/helpers/history.html +4 -4
  96. unfold/templates/unfold/helpers/label.html +1 -1
  97. unfold/templates/unfold/helpers/language_switch.html +3 -3
  98. unfold/templates/unfold/helpers/messages/debug.html +1 -1
  99. unfold/templates/unfold/helpers/messages/error.html +1 -1
  100. unfold/templates/unfold/helpers/messages/errornote.html +1 -1
  101. unfold/templates/unfold/helpers/messages/info.html +1 -1
  102. unfold/templates/unfold/helpers/messages/success.html +1 -1
  103. unfold/templates/unfold/helpers/messages/warning.html +1 -1
  104. unfold/templates/unfold/helpers/navigation.html +3 -11
  105. unfold/templates/unfold/helpers/navigation_header.html +13 -0
  106. unfold/templates/unfold/helpers/pagination_ellipsis.html +1 -1
  107. unfold/templates/unfold/helpers/search.html +5 -5
  108. unfold/templates/unfold/helpers/search_results.html +2 -2
  109. unfold/templates/unfold/helpers/site_icon.html +7 -5
  110. unfold/templates/unfold/helpers/site_logo.html +1 -1
  111. unfold/templates/unfold/helpers/submit.html +1 -1
  112. unfold/templates/unfold/helpers/tab_action.html +2 -2
  113. unfold/templates/unfold/helpers/tab_list.html +9 -9
  114. unfold/templates/unfold/helpers/theme_switch.html +5 -5
  115. unfold/templates/unfold/helpers/userlinks.html +4 -0
  116. unfold/templates/unfold/helpers/welcomemsg.html +7 -3
  117. unfold/templates/unfold/layouts/base_simple.html +2 -2
  118. unfold/templates/unfold/layouts/skeleton.html +11 -5
  119. unfold/templates/unfold/widgets/clearable_file_input.html +6 -6
  120. unfold/templates/unfold/widgets/clearable_file_input_small.html +7 -7
  121. unfold/templates/unfold/widgets/foreign_key_raw_id.html +1 -1
  122. unfold/templates/unfold/widgets/radio.html +1 -1
  123. unfold/templates/unfold/widgets/range.html +1 -1
  124. unfold/templates/unfold/widgets/related_widget_wrapper.html +4 -4
  125. unfold/templates/unfold/widgets/textarea_expandable.html +1 -1
  126. unfold/templatetags/unfold.py +104 -0
  127. unfold/templatetags/unfold_list.py +9 -4
  128. unfold/widgets.py +31 -28
  129. unfold/templates/unfold/change_list_filter.html +0 -57
  130. {django_unfold-0.43.0.dist-info → django_unfold-0.44.0.dist-info}/LICENSE.md +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: django-unfold
3
- Version: 0.43.0
3
+ Version: 0.44.0
4
4
  Summary: Modern Django admin theme for seamless interface development
5
5
  Home-page: https://unfoldadmin.com
6
6
  License: MIT
@@ -5,7 +5,7 @@ unfold/checks.py,sha256=Smgji9w19hnYjJElJ_FJnnyTEAE-E-OUB6otHu7lasY,1670
5
5
  unfold/components.py,sha256=OKYEpAeawhqSUWOy0VB8EZTsPRzV19oOjSrWckLLeHI,1295
6
6
  unfold/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
7
  unfold/contrib/filters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
- unfold/contrib/filters/admin.py,sha256=EXg7eQSVKxobhV0l7Uk4h4zSiEfUB5sJs0qLvfugqRY,21022
8
+ unfold/contrib/filters/admin.py,sha256=L69oFj7DZMkLqJSJwY2bEh7VF_XqBEQ-uWYnWks1pME,21152
9
9
  unfold/contrib/filters/apps.py,sha256=wEySJy0gMLzFLb9XNKE-RexiO05X7NaQ5QmxZyziJ_k,136
10
10
  unfold/contrib/filters/forms.py,sha256=p1vfCdhBVEGmvHG0EAtv12B1Ssm2xtXuImL4R0bHOV0,5748
11
11
  unfold/contrib/filters/static/unfold/filters/css/nouislider.min.css,sha256=rddL_jOGGVEY6wR-aw0VYovAfz5fPeAIsulrlSNb1hc,4221
@@ -13,46 +13,46 @@ unfold/contrib/filters/static/unfold/filters/js/DateTimeShortcuts.js,sha256=jgFN
13
13
  unfold/contrib/filters/static/unfold/filters/js/admin-numeric-filter.js,sha256=nTkiiJk4Abn9d6KigxPSEsereFhFq-v5n_boiiY1eII,1668
14
14
  unfold/contrib/filters/static/unfold/filters/js/nouislider.min.js,sha256=aIEt5UlLNnEv4-HPyxcLqu9dTS7gXiMm35Mm0rFmQ0Q,26683
15
15
  unfold/contrib/filters/static/unfold/filters/js/wNumb.min.js,sha256=gayD3el5iizhy0DlsyKfZvfOfOZHDmb7BPvOcT97GSg,2236
16
- unfold/contrib/filters/templates/unfold/filters/filters_date_range.html,sha256=gh_3lsncCJi2r76ZNkx--0FZEGChf4QZC3NHeYnwl64,678
17
- unfold/contrib/filters/templates/unfold/filters/filters_datetime_range.html,sha256=gh_3lsncCJi2r76ZNkx--0FZEGChf4QZC3NHeYnwl64,678
16
+ unfold/contrib/filters/templates/unfold/filters/filters_date_range.html,sha256=9wVy7LX-9b9lXY53pSC5bCts2yv82EDHP5BL1PczM_k,673
17
+ unfold/contrib/filters/templates/unfold/filters/filters_datetime_range.html,sha256=9wVy7LX-9b9lXY53pSC5bCts2yv82EDHP5BL1PczM_k,673
18
18
  unfold/contrib/filters/templates/unfold/filters/filters_field.html,sha256=UTlSZlpg-gAc_a-EJLLF0NI_ofuSHQ2kMMoAs99nL2E,164
19
- unfold/contrib/filters/templates/unfold/filters/filters_numeric_range.html,sha256=sW6hOTFUkEO9NOKhlnA3NUGzL-GGHLHHYasC55-qzUI,656
20
- unfold/contrib/filters/templates/unfold/filters/filters_numeric_single.html,sha256=qoo3kU_32CvJMFSPFLM-V6lPdo_JJNiJqr2XN1ziycQ,593
21
- unfold/contrib/filters/templates/unfold/filters/filters_numeric_slider.html,sha256=UYSredit27-zvIYwmm7k7umk4YJ9Ap2MEaV_-ckKfLM,1725
19
+ unfold/contrib/filters/templates/unfold/filters/filters_numeric_range.html,sha256=aHggmpsmwts78x-BfAApHkfOImg8NEMi1FEJZwTqveI,651
20
+ unfold/contrib/filters/templates/unfold/filters/filters_numeric_single.html,sha256=fWupjTY6kInxOsm2-eEMIB3IZoslnLJmxBdOdMxO-Is,588
21
+ unfold/contrib/filters/templates/unfold/filters/filters_numeric_slider.html,sha256=E-OrYbFNKSyNc2yaoDB9LLuiDd_ShU5hJGlLij35NYs,1714
22
22
  unfold/contrib/forms/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
23
  unfold/contrib/forms/apps.py,sha256=Di0TMzVuRpVxLG-8Bjdq5ALCSf5r7u2xVhD0jU6H5Sc,132
24
24
  unfold/contrib/forms/static/unfold/forms/css/trix.css,sha256=TH9WdnaZrmwI8hAEydwjobdrBzSw_KYdRTSQDuD-8hE,20027
25
25
  unfold/contrib/forms/static/unfold/forms/js/trix.config.js,sha256=spkNBlJVk_pqido_rM6yywQxkJ3Kqb7DMLiBgpKksdA,858
26
26
  unfold/contrib/forms/static/unfold/forms/js/trix.js,sha256=HJXkWw7Mtocr7IeyBVplEIeO4X0kUhHHsI1Yra_ZMl8,175599
27
- unfold/contrib/forms/templates/unfold/forms/array.html,sha256=1Hzg3-5hpoUQAHql3ZkNWqkasWcC68-QLwi-kdS5LoI,1750
28
- unfold/contrib/forms/templates/unfold/forms/helpers/toolbar.html,sha256=9KeJEP6YE-NOmPU53cYZ9jHwVjgQS2MP5-SP0xT4ccY,9754
27
+ unfold/contrib/forms/templates/unfold/forms/array.html,sha256=utd_6pwpIDAP2WWg9uXofZzyuunk_u-x7EL7L-v5H-0,1779
28
+ unfold/contrib/forms/templates/unfold/forms/helpers/toolbar.html,sha256=DWhxW5hdsCllGkNbKZXwWhRe3ki2TtvsLUblzVoRYI8,9731
29
29
  unfold/contrib/forms/templates/unfold/forms/wysiwyg.html,sha256=uLLf59jsD3apAm9Uh1TH4pwCOtO7pL2djAeZLOHyNAI,399
30
- unfold/contrib/forms/widgets.py,sha256=8-KLSRVtgtPDCDKz6sbIrcdvkfbqrFRkInG871WAv2I,3142
30
+ unfold/contrib/forms/widgets.py,sha256=PuB1XnaKaL3ub-wbdpZAhvu9ZE79DBoAUG7FzyDFoiM,3139
31
31
  unfold/contrib/guardian/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
32
32
  unfold/contrib/guardian/apps.py,sha256=ObJqwh4vHxkD4XfduP5IQAiYiWZxsXUOUqF1_R1GsRI,136
33
33
  unfold/contrib/guardian/templates/admin/guardian/model/change_form.html,sha256=FSJc4MYYWyzZAy8Ay0b7Ov-cUo-oELHOM5fQehM54Lg,403
34
34
  unfold/contrib/guardian/templates/admin/guardian/model/field.html,sha256=V9ZgmYiIQAFy3GC464y0iBOHm3SDvEEymbuhT3S0qKU,296
35
- unfold/contrib/guardian/templates/admin/guardian/model/obj_perms_manage.html,sha256=4C7EdB6ueuwk6EfwLURsRz8rb2DuxuB4lPxL09ZAJLg,1435
36
- unfold/contrib/guardian/templates/admin/guardian/model/obj_perms_manage_group.html,sha256=WXfRUGPrj4d7OgKFPVMOXHFTeotpdsuaO3P7Uzt8E2A,2331
37
- unfold/contrib/guardian/templates/admin/guardian/model/obj_perms_manage_user.html,sha256=vesY2_TqkTPEq4xncGfFHP9mFcAcN1oMJ990b1KUTuU,2329
38
- unfold/contrib/guardian/templates/unfold/guardian/group_form.html,sha256=3W-CCW8eb_VAzjLHtbNYBzlxFP_wofQFl9EMO-E4ivQ,3925
39
- unfold/contrib/guardian/templates/unfold/guardian/user_form.html,sha256=ZGcndXOn-MeFW3b2bNUr5-PFS85HxLhDoPeR7AIKQ4Q,3914
35
+ unfold/contrib/guardian/templates/admin/guardian/model/obj_perms_manage.html,sha256=ytG7eVkEbPM7NPWAmf-nN1Fl-hVOC7eueA9hm1WlmoA,1435
36
+ unfold/contrib/guardian/templates/admin/guardian/model/obj_perms_manage_group.html,sha256=NkvxVhSgVtJvKG7tEPXu1_iE1Tssezo7lXn5IAFj1i4,2328
37
+ unfold/contrib/guardian/templates/admin/guardian/model/obj_perms_manage_user.html,sha256=LHceXxo2hTEiF7ApVqDyIaYioG_QnJbxlfm3IqW1Zbw,2326
38
+ unfold/contrib/guardian/templates/unfold/guardian/group_form.html,sha256=g5HFC2U-l6CiupS6VmT98hvhjcln2VSwqP2WYTdGRiE,3916
39
+ unfold/contrib/guardian/templates/unfold/guardian/user_form.html,sha256=1o5LJKu6fCMrW-IH-mYg2-HVV8ZF0lhvinnK4QHxMf8,3905
40
40
  unfold/contrib/import_export/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
41
41
  unfold/contrib/import_export/apps.py,sha256=SdJu6Qh90VqGWY19FSDhhpUqhTbaIYsJKny3zX5baHI,149
42
42
  unfold/contrib/import_export/forms.py,sha256=kh8psUoTObrRb2wtkYhvRu1D5QM02xWk4UNLQT5lQZA,2038
43
43
  unfold/contrib/import_export/templates/admin/import_export/base.html,sha256=loL2qcV-f8aAzkHss_I4IkwfgemVW2CjOu_aiBxdwX0,357
44
- unfold/contrib/import_export/templates/admin/import_export/change_form.html,sha256=4KLXDLG1Wu3dGcvmB2nx075WYIExJdGxSrHWjMWeg4Q,455
44
+ unfold/contrib/import_export/templates/admin/import_export/change_form.html,sha256=PNju2eDPx1xU0s6XSI6xHlwgdJxISbdJoVztgtDekSQ,452
45
45
  unfold/contrib/import_export/templates/admin/import_export/change_list_export.html,sha256=vZb2XVoJrDSjM1msiZqkQPMLQGjuqRHuLNdt11hmbQs,164
46
46
  unfold/contrib/import_export/templates/admin/import_export/change_list_export_item.html,sha256=pTDeqPKOlCPKH2dxMIfPnWuc2wVDzB7AzL73WbxSnRY,257
47
47
  unfold/contrib/import_export/templates/admin/import_export/change_list_import_export.html,sha256=JdKd6P2Ot9Ou4yg4CywTauuE1UiTz_mRvDwlx3vj3LI,229
48
48
  unfold/contrib/import_export/templates/admin/import_export/change_list_import_item.html,sha256=XUuRxnsx9YQbKvW-E_JGl_ha7kpTSGSoRefOTTizuX0,233
49
- unfold/contrib/import_export/templates/admin/import_export/export.html,sha256=6oI9pzY7sl6AG8ObvI9hY86gBH4DRnj6eWvp9Uw54UA,3456
49
+ unfold/contrib/import_export/templates/admin/import_export/export.html,sha256=FyWFUYHVJ_ym6rGhyx8qwWZJ2BLES9zSAJ2id0oYl2I,3447
50
50
  unfold/contrib/import_export/templates/admin/import_export/import.html,sha256=i4LjZOLDnDKHzjHJt45vqFLVC_aBhV1A6QJZuR7CrgI,2134
51
- unfold/contrib/import_export/templates/admin/import_export/import_confirm.html,sha256=9DpqVW2TcrC8UrAawBP-6KIzKf0bZDNhpYIWduGTnVc,869
52
- unfold/contrib/import_export/templates/admin/import_export/import_errors.html,sha256=edsP56v1xeCezliXTxPIVo8mvv8rdVwh8yz0LeP5Zjk,1430
53
- unfold/contrib/import_export/templates/admin/import_export/import_form.html,sha256=mMuMTAbgMbJ1IyCQPBkzmob4m5lJmZ69_QSo3GvvSiY,990
54
- unfold/contrib/import_export/templates/admin/import_export/import_preview.html,sha256=UZG5ep4BRbq3K9g3Yv0sNJdVRYmEi4luHi51IHNGNU8,2263
55
- unfold/contrib/import_export/templates/admin/import_export/import_validation.html,sha256=3FKreXso0U3Jvz8LKGiKpLXAD2kqwH9xf3KHPZ3ALMs,5065
51
+ unfold/contrib/import_export/templates/admin/import_export/import_confirm.html,sha256=3mLC9MfDeBuAZVpsdpSjjX29piuLCVMPxC2TEWOUMnE,863
52
+ unfold/contrib/import_export/templates/admin/import_export/import_errors.html,sha256=RIeY_FeT8HIU4QHlb_DNXoOF6XcNyLpdf-DEY6dn04U,1446
53
+ unfold/contrib/import_export/templates/admin/import_export/import_form.html,sha256=i321xCOjncZMzw7opS-ZqdEkR-ygc3O165gLrGbY4bA,984
54
+ unfold/contrib/import_export/templates/admin/import_export/import_preview.html,sha256=9xVu1a3cje3rYtbfKnVr89E5MjKHyWwIre3_rujVe9o,2257
55
+ unfold/contrib/import_export/templates/admin/import_export/import_validation.html,sha256=ytGelIVP3qZCP9F6Q9qHKAAwu472-yB1Et8VU0kUIY8,5085
56
56
  unfold/contrib/import_export/templates/admin/import_export/resource_fields_list.html,sha256=Bc6uD8aHA5YYbZgLAPpGUckFjnxn9uq19YuKKFxTj4Y,887
57
57
  unfold/contrib/inlines/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
58
58
  unfold/contrib/inlines/admin.py,sha256=LloGe9KaY0hb9LX0jICpWi01DcdnSCXRfpAdY9VxkiY,5929
@@ -61,21 +61,21 @@ unfold/contrib/inlines/checks.py,sha256=8sdyBcxw0erqQvp9sHlpGgy0rXfum-cd2eQE0rXF
61
61
  unfold/contrib/inlines/forms.py,sha256=s49xrIkQTbvSMsrP4DydXWkpP1v8NCUmQw_Bcoqf0i4,1322
62
62
  unfold/contrib/simple_history/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
63
63
  unfold/contrib/simple_history/apps.py,sha256=eF_KVYb60CAnGgWk2Z1YKYGfgA3TJBMr229qI7e2pgU,153
64
- unfold/contrib/simple_history/templates/simple_history/object_history.html,sha256=vX8bIubM54WtpnCCz6Ip2c1ryisaCveUHAakRMj_qE8,751
65
- unfold/contrib/simple_history/templates/simple_history/object_history_form.html,sha256=Mc22IgdVTg0W2JsiI3R66wN3lPxOWwpuLcbLQYDQ7OI,2299
66
- unfold/contrib/simple_history/templates/simple_history/object_history_list.html,sha256=MvCaPwFwNlSr-kNSJIxBdKhWQmG4OgNJTDPWB-FWUEk,6858
67
- unfold/contrib/simple_history/templates/simple_history/submit_line.html,sha256=UtC4DMpnIK3slH8txxNA5igBhFzjgFXErNxG5VWqR_k,1711
64
+ unfold/contrib/simple_history/templates/simple_history/object_history.html,sha256=tlSA-y1742cCIIz7VHRBOvw0op9KT6gMhYVJWK0Tbdw,745
65
+ unfold/contrib/simple_history/templates/simple_history/object_history_form.html,sha256=JKCe-QTBZMB2ol5LPiX3gNuNxFpi_rqlXC9X92PFBPE,2296
66
+ unfold/contrib/simple_history/templates/simple_history/object_history_list.html,sha256=qp_D3gkKYaZPPfsgJrLa84hMdxFkEyI_pf4hynmi2zY,6852
67
+ unfold/contrib/simple_history/templates/simple_history/submit_line.html,sha256=y8BleGHPNztA_R37rTB-zjJ68uDbE8flYSvMD0Jfl5Y,1734
68
68
  unfold/dataclasses.py,sha256=4PAWLVlUhyGMq1Mwai7afCgrRO0Inulw0opFUKVEOBk,483
69
69
  unfold/decorators.py,sha256=jyjE2sunazp8gK1QIsNRJGEEDwO7RDKWDKnOI3GDWZE,3338
70
70
  unfold/exceptions.py,sha256=gcCj1ox61E137bk_0Cqy4YC3SttdPgB-fiJUqpmyHSE,43
71
71
  unfold/fields.py,sha256=yhtpDfqycpOxqdQlbncCg9qhELxGk3AtXizkZyzzH0g,7410
72
- unfold/forms.py,sha256=raPZVYuZ1UQwo5qv8M6KDdprfCvRgjFnYfLdkmBRojI,4118
73
- unfold/settings.py,sha256=71ygidxvTum58iYRk8Tcujgo09nZJRjNRUQOWdFm-5s,2140
74
- unfold/sites.py,sha256=GTClpbOENkPRallC2IrskwtgbqrbuWE5Pr5wsCoB9Us,14566
72
+ unfold/forms.py,sha256=zisetA-ItOwsUoYnV2w458nM0iXajD9Q9vsGI_3QmUY,4439
73
+ unfold/settings.py,sha256=fpfu9GVElSJSEMWpT_uZwU7vXi8k27xaG4IUdbqHb5Y,2591
74
+ unfold/sites.py,sha256=UgB79cnv7rzWkSz_JcI1GuUFtLIQAs1LEhXvdKLmAzc,15058
75
75
  unfold/static/admin/js/admin/RelatedObjectLookups.js,sha256=alI0-yq7YPDJJJn-yg1ce79-Cv88yQDUrfaGqFZnsaY,9048
76
- unfold/static/admin/js/inlines.js,sha256=-WGZO7BO07zNGAvb5ZdnR4PjqqhU29gyVMKsBn-PBUw,14577
76
+ unfold/static/admin/js/inlines.js,sha256=34KTYG-8YfY87BBJa0k0QsxJNn-ZMutVBBNtj-bbdzQ,14647
77
77
  unfold/static/unfold/css/simplebar.css,sha256=5LLaEM11pKi6JFCOLt4XKuZxTpT9rpdq_tNlaQytFlU,4647
78
- unfold/static/unfold/css/styles.css,sha256=jRv4QVgYBUhJFFjOD_0ujpoQnSmIgE8p8umy1pViX7k,148327
78
+ unfold/static/unfold/css/styles.css,sha256=Ol6bupW_O_1k3sRoNJeNOCrCkFK9mOI_LS8lGnLAcic,156416
79
79
  unfold/static/unfold/fonts/inter/Inter-Bold.woff2,sha256=O88EyjAeRPE_QEyKBKpK5wf2epUOEu8wwjj5bnhCZqE,46552
80
80
  unfold/static/unfold/fonts/inter/Inter-Medium.woff2,sha256=O88EyjAeRPE_QEyKBKpK5wf2epUOEu8wwjj5bnhCZqE,46552
81
81
  unfold/static/unfold/fonts/inter/Inter-Regular.woff2,sha256=O88EyjAeRPE_QEyKBKpK5wf2epUOEu8wwjj5bnhCZqE,46552
@@ -86,130 +86,142 @@ unfold/static/unfold/fonts/material-symbols/styles.css,sha256=ZX1icA_BXCVL0eoY2H
86
86
  unfold/static/unfold/js/alpine.anchor.js,sha256=2Jg9aUq749pjFynzr_H1NK3lf-nXrbHMtO9wvlWJyIQ,15524
87
87
  unfold/static/unfold/js/alpine.js,sha256=NY2a-7GrW--i9IBhowd25bzXcH9BCmBrqYX5i8OxwDQ,44659
88
88
  unfold/static/unfold/js/alpine.persist.js,sha256=jFBwr6faTqqhp3sVi4_VTxJ0FpaF9YGZN1ZGLl_5QYM,837
89
+ unfold/static/unfold/js/alpine.resize.js,sha256=mXR2L6neT584cfNLY5_imDq5DKjW1noXys7fhb1yxY4,703
89
90
  unfold/static/unfold/js/alpine.sort.js,sha256=q6LxgConwu8M8R03mZSBcsKwJv6fF7oomP8sqLxVQ0w,37891
90
- unfold/static/unfold/js/app.js,sha256=BblUrP4UxZWGRcjHErfixPmC2LfYBA4dpGl2oXb-xDE,8216
91
+ unfold/static/unfold/js/app.js,sha256=g7aYqw4fsBCW4hpxHnWuNwsXmLehcA617WLaaT-7ZPs,7730
91
92
  unfold/static/unfold/js/chart.js,sha256=22W6cFERR-CElMOKRgMMicueMVP0Vf7FBEBYH8Z8tCk,200633
92
- unfold/static/unfold/js/htmx.js,sha256=XOLqvnZiyEx46EW9vaJTBUaaWg8CGVVfXJkVsUmJbpI,42820
93
+ unfold/static/unfold/js/htmx.js,sha256=acrv0NqSJpBm5yXX_hdeJrnVDJYuMFZFnAxHcVTNudM,50918
93
94
  unfold/static/unfold/js/select2.init.js,sha256=siSDCwzy2PsOwA0Kj26JA_ELBtZlS70O8D8f1qTMmqg,291
94
95
  unfold/static/unfold/js/simplebar.js,sha256=t-uG1FAD6ZoiMeN--wac0XRS7SxoDVG6zvRnGuEp7X8,27176
95
- unfold/styles.css,sha256=sYekwcivglCDa8zVo21pCY-3XyiyXcCHMK6AVGc-eHs,18531
96
- unfold/templates/admin/actions.html,sha256=8GqELAxzywGyfQJiQeuhGIQUakdK_WeneILY06C7mEo,2746
96
+ unfold/styles.css,sha256=osthmFEaEe03Gm5hmnIJqjlvWgeIJVv0pnXSHpNedyQ,18579
97
+ unfold/templates/admin/actions.html,sha256=aroIid16mORcx-0p8O2dOoWupEoTGX66pt-PAXjSYZ0,3063
97
98
  unfold/templates/admin/app_index.html,sha256=fphodUAgaL7X4pOz-QxiWOKnESEs8wRqPoShSF6iBaU,1345
98
- unfold/templates/admin/app_list.html,sha256=avKk-Dj_4GY_izBKWsb_yNHxUyVpdRbDBZuoxlIEdN0,2817
99
- unfold/templates/admin/auth/user/add_form.html,sha256=L0ylU7BLEIoZc3nS4Rq6DA0H94HQ3aXFr-iwK0vp2Bs,482
100
- unfold/templates/admin/auth/user/change_password.html,sha256=q7RMscF4thZisdt5CrZLugk-MWDr8DgQ-3KXDv2QlGk,2902
101
- unfold/templates/admin/base.html,sha256=9iTxs17eoeBhdUbnvq_fpq_gKmO9_D9XMnAuRdDESsE,2364
99
+ unfold/templates/admin/app_list.html,sha256=VtntgHpbZdXbt_HXBLAtbuMdz1alS7F_S7eG37M5Rig,2855
100
+ unfold/templates/admin/auth/user/add_form.html,sha256=kZDtUyhrvCIH9rlAq0iXLKYt97j1a-GsrWZQCQDASYM,479
101
+ unfold/templates/admin/auth/user/change_password.html,sha256=OxpsKnVQm5lDrK5tGH0EAPFCPs288m0Jcy5WNYsdBXw,2896
102
+ unfold/templates/admin/base.html,sha256=3xQmoD_7cu2UlgEdvnt7v_CibT9t1Iul0b-VU2Awu_U,2395
102
103
  unfold/templates/admin/base_site.html,sha256=FM8OOaXsQqJlYapeJvBznXCOt7poMiWrweTWcsMHzeI,365
103
104
  unfold/templates/admin/change_form.html,sha256=LfeAeLYpJvNhOMJWQFeb9oSrAznlB4pnFrqTVMCIy4o,5340
104
105
  unfold/templates/admin/change_form_object_tools.html,sha256=eyeH-i2HgEM0Yi-OJA2D1VnKJyC19A_my1IDGxxoP8Y,593
105
- unfold/templates/admin/change_list.html,sha256=qpfVyQC6S-ypJZeYqPGBDvksw182d2fUH9KDmbTr9SI,5634
106
+ unfold/templates/admin/change_list.html,sha256=V2DgxlGaQvcOS1qAxe4no1EJCq-9nIOa10kYLkcE2Ag,5008
106
107
  unfold/templates/admin/change_list_object_tools.html,sha256=cmMiT2nT20Ph5yfpj9aHPr76Z-JP4aSXp0o-Rnad28s,147
107
- unfold/templates/admin/change_list_results.html,sha256=Nb-NbQYalqGJ9TRW4B1RZrS2ePhbyWtXi_K-tBn1DQs,5502
108
- unfold/templates/admin/date_hierarchy.html,sha256=yMiZ3h2Sfl1JxoOHu9SmOoGvvboGOEFq20L8bPjuy2s,1411
109
- unfold/templates/admin/delete_confirmation.html,sha256=atSK7BJyqisCNJa_xYL9FItaMkT16WpQp7bg6v51ay0,4628
110
- unfold/templates/admin/delete_selected_confirmation.html,sha256=cVmF3XbxZbuHgUzhteFGC_vrz5goi6h5cy_XbP7twhw,4397
111
- unfold/templates/admin/edit_inline/stacked.html,sha256=JKWBS51A_af52mgUedPc4dg5T0Gu00ehLDbUWLn866E,7733
112
- unfold/templates/admin/edit_inline/tabular.html,sha256=ytdjFxOjBWAPokqtmfbjsNVXoFYSK3jZIRxnsZGuaGQ,15141
113
- unfold/templates/admin/filter.html,sha256=wgYuP_ZmTofljsavLe4t8djAZnXRfEmz5U40SI-2Hjc,1640
114
- unfold/templates/admin/includes/fieldset.html,sha256=eyo5icIIrihKBLT7k3FCgoVhK55Lb78eIp7tIUNXLvU,975
115
- unfold/templates/admin/includes/object_delete_summary.html,sha256=w_lPVnBrng0oqvFy6rzvr8c5bzdU8GpqvYUAvaXza0c,444
108
+ unfold/templates/admin/change_list_results.html,sha256=UweKSz7jKJ6apEHv2MrGq2xf-o1PKjMuKqqitdb-GSk,7624
109
+ unfold/templates/admin/date_hierarchy.html,sha256=Jl_Vk05fXvsSvod5Dw2p3KhpCQGjtSX1zqlNjjkBFR4,1411
110
+ unfold/templates/admin/delete_confirmation.html,sha256=yT_NHbFHZEjkSCaGVcM52GCG-FDmWiJdTFLbq9CBCx4,4619
111
+ unfold/templates/admin/delete_selected_confirmation.html,sha256=QR0JhrPR8YI8KpQnB3xyrKxaui-_pEQmfaMDbcXjjZ0,4391
112
+ unfold/templates/admin/edit_inline/stacked.html,sha256=-ASy7Jd0SwWBDxurucbus86YT2AokJEcCUrqPlHVDQA,7644
113
+ unfold/templates/admin/edit_inline/tabular.html,sha256=FBgzUb-U0cZCN28-cpHzRSyPE6bgseD_r3MY1AP0nGQ,2813
114
+ unfold/templates/admin/filter.html,sha256=ZXldjgLjrBVrNEtAc9H9zlMd_lXJBDhBk2yf2rMG1-Y,1965
115
+ unfold/templates/admin/includes/fieldset.html,sha256=gX-dc-jPLswk21XSKUXzAU8WFl3CFfeVrIAU2bviPyg,812
116
+ unfold/templates/admin/includes/object_delete_summary.html,sha256=FgwfapZCKWtnFtTHqh1MRuxxLot4bAw92WCcR_V8ImI,444
116
117
  unfold/templates/admin/index.html,sha256=pkGdKWdD3zzOvkRdELvdb15sleSpfl4eHPA14PAh7z0,684
117
- unfold/templates/admin/login.html,sha256=Xw50tZZxESEwz9YOcV1CSPeyyI2H1l0q4x4zBrC4dps,4170
118
- unfold/templates/admin/nav_sidebar.html,sha256=m5xcM5k-wfZ_hbwKq9dXpjfCW-3A0ahVEXr3y64W1lQ,618
119
- unfold/templates/admin/object_history.html,sha256=0NvY31OEO0g8JHEYVzUUhg95nJxOto2J0I_K4sMf6wc,4825
120
- unfold/templates/admin/pagination.html,sha256=KrwOM6gRizfpTMP59TESQaNGcQzkga2k02opl_7BxLo,1130
121
- unfold/templates/admin/search_form.html,sha256=NNTJ38yABrSBOet3ivkbzciYHd_I_mGHlgRvLHSL5ig,1219
122
- unfold/templates/admin/submit_line.html,sha256=ij1DDrmBRPM2DL5CnC4Aby0v55WgtsdZzrd8nUukUoE,4165
123
- unfold/templates/auth/widgets/read_only_password_hash.html,sha256=UK36u2lYyiY_oSWuzlH_54Kjc1RzgO3Y1VaqJPyXk_Y,754
124
- unfold/templates/registration/logged_out.html,sha256=cg4YjMbVtuMdOJD3hkkJZntv0G8gnzQYkDpZJVRNM2g,995
125
- unfold/templates/registration/password_change_done.html,sha256=MjwUFjMoM26GcQ4sduh5afNzt11HbOVFEVb4nZ6bdD8,1080
126
- unfold/templates/registration/password_change_form.html,sha256=YKIjlijh9wTFkCO-KWgNBxZdgx4RzXUWr4l2zO1ZNJA,2235
127
- unfold/templates/unfold/change_list_filter.html,sha256=owa9BIj19AQJZ1hmdM6mkA4BMvkbDRDQUrf-pvDW-O0,3259
128
- unfold/templates/unfold/components/button.html,sha256=E9B5Y0ZzUrFmw50tK8Fi8-V0V6-ONbWcBMuyoxaDjSI,476
129
- unfold/templates/unfold/components/card.html,sha256=UlBRe4flU_GQkMyFibS50YeW8zu9VUaHMlh-xmrI61s,1118
118
+ unfold/templates/admin/login.html,sha256=sOXxst1SjqfYQsT04tr_qePuqu5ggRs484dkdaeJCQY,4190
119
+ unfold/templates/admin/nav_sidebar.html,sha256=cadJwXcReRHwVTpXGycF3uv5VZ5JDcIbY1pCabeQlCo,250
120
+ unfold/templates/admin/object_history.html,sha256=bfad4_lfLQFcoMV67yW7BnAi1Hwrptmgxj2tgPYQjtI,4816
121
+ unfold/templates/admin/pagination.html,sha256=1UIc6Hm2LnDDAHUE5UjuPzdFdiAat4tF6sk058UfRP0,2251
122
+ unfold/templates/admin/search_form.html,sha256=FUSQPwjjKrsarJxar6O2wFhucy0Eq7EOc6V-EHt86sE,1370
123
+ unfold/templates/admin/submit_line.html,sha256=GqZzOJIxYlM0zauyXDIMjk8QynSpyk65Mq8d8y9tXDQ,4322
124
+ unfold/templates/auth/widgets/read_only_password_hash.html,sha256=bQiYKDKJkyVP0_2eJG16oKviB4WEA0V7lSp6sGfgows,751
125
+ unfold/templates/registration/logged_out.html,sha256=GgLzqmOGpiw5FcA-Aw_T6YvhYHhGFWhyES40T28waLQ,1002
126
+ unfold/templates/registration/password_change_done.html,sha256=9HDpSraz3Kxdy0Fghbn-Lv0GAtpPgG6cuO7fvfMiYg8,1077
127
+ unfold/templates/registration/password_change_form.html,sha256=EgakVWzpQUEJKQS0AOfk8O_CY1bKbyWXSUuBaxtQEdU,2232
128
+ unfold/templates/unfold/components/button.html,sha256=TABo79ppuGlm2ENvRs6L3Vne8B5_9he_OhZTnPMiitQ,473
129
+ unfold/templates/unfold/components/card.html,sha256=04xD3Cn5-2OUouoQ71EkS6t0AgAx4OeGaeOf85wPp_U,1115
130
130
  unfold/templates/unfold/components/chart/bar.html,sha256=nDdDCUXvFd793OpNgNPQo0vBmvYngMsQyPHVTf1vfOw,297
131
- unfold/templates/unfold/components/chart/cohort.html,sha256=4vywJdz5_ZXlPklmOChp33lq96C1qJxtE0P-IyeVUk4,2355
131
+ unfold/templates/unfold/components/chart/cohort.html,sha256=9XRicFn7N-krDu-GWkG0DWq-BLhKBcotDq4anKYiMDk,2352
132
132
  unfold/templates/unfold/components/chart/line.html,sha256=DHaZUFTlCs5cX7ioYdTzoN4ITHWNcEoNSUp7v3hlo_E,298
133
133
  unfold/templates/unfold/components/container.html,sha256=WBk1rGHnTsObi3pJCpL3dfFAUQ2abDmokU0Lee7R9CI,83
134
134
  unfold/templates/unfold/components/flex.html,sha256=_hBsQLJ6-7MfEfXNp5Wy-ykNtPMnnNg_io2IMGegn3s,134
135
135
  unfold/templates/unfold/components/icon.html,sha256=Qlhcf41FOwNVJ-nvA0RJ_Dn6JW6PUFXO6tOR3Xtf6e8,99
136
- unfold/templates/unfold/components/navigation.html,sha256=5YFple8oIVZZcr22TOZY56_Xk5M-MvKF4U6krwMOKD0,887
136
+ unfold/templates/unfold/components/navigation.html,sha256=NCPFXM1Q__2LoIyNNYbhhZZPtdw3eLvmc9vlhnm9mhg,887
137
137
  unfold/templates/unfold/components/progress.html,sha256=BnH2uC_ZL5ITvMjHiHoM0gjtbRTLNU1-tFcfCuJO0BE,808
138
- unfold/templates/unfold/components/separator.html,sha256=TlKnvg1h3diDvm9A_FWc2atflAxb4e3HtnxYTxR75SU,168
139
- unfold/templates/unfold/components/table.html,sha256=iC7mhLlPLRgCaV0sVjEkxIR7A4NLV2-rSHqEbmwpaHw,2028
138
+ unfold/templates/unfold/components/separator.html,sha256=yvHywT_MFkx5dNC2K53OFHRGxLDsEjRpptujXyGeoTY,168
139
+ unfold/templates/unfold/components/table.html,sha256=_mIfauxVCt7gFC8CJpDdBp3TaGc99Lu4QLg5D8597-s,2022
140
140
  unfold/templates/unfold/components/text.html,sha256=-GjxvdiaBQIaNfPSzT6SSIwnc3R27FkSDQMoF3FDPso,102
141
141
  unfold/templates/unfold/components/title.html,sha256=aMYSO30ybFYqPnqwlJVh2uNmcgnVrRycZkHTjJTjpX8,171
142
- unfold/templates/unfold/components/tracker.html,sha256=9DLc_vjiAVgdcp1v_sheJ3YZl8BXOZ-o6YBXlNqDfF0,284
143
- unfold/templates/unfold/helpers/account_links.html,sha256=QRcsosWnq3cHH6UMmxGAFZTomOWubbwfn4NymFAQ-XA,1863
144
- unfold/templates/unfold/helpers/actions_row.html,sha256=1cZ6eI-ljhuaRIeb8AQkELCwuCchom9uwOITdkhKc-4,1931
145
- unfold/templates/unfold/helpers/add_link.html,sha256=CUFZ3quvp1JMAPmTkFRjpUXSy9GVXnIWNcRzv_gpq1A,810
146
- unfold/templates/unfold/helpers/app_list.html,sha256=zeMeiSK-vlxrgP-jDkIN1k1mYCog033ybBSxw5POWvs,5516
147
- unfold/templates/unfold/helpers/app_list_default.html,sha256=T8xXI0LsEZCyttxXZGomGMkqEd8Wxj61RCYQ4YDxlHE,3908
142
+ unfold/templates/unfold/components/tracker.html,sha256=-PvDHdAAB2G5mKXpQUtljWJYhhavsa1aEoBvLrCiCJo,284
143
+ unfold/templates/unfold/helpers/account_links.html,sha256=dU72CTNO1KubSa-lhTedM1KaGqES8HmkoTp33KBDWAw,1869
144
+ unfold/templates/unfold/helpers/actions_row.html,sha256=p_Rn9B-izHYAQTGiivm4NDqfvX2N5h0Mva4Ak1wHBLA,1960
145
+ unfold/templates/unfold/helpers/add_link.html,sha256=Z0TzUavXH8AQ7A-I0SQ79t-UI87dyP_PZEpsDrm13Q8,810
146
+ unfold/templates/unfold/helpers/app_list.html,sha256=eIvBuP_g8oHvXZTy-IMjyynFCC1CChtMq4qZia6i77E,5751
147
+ unfold/templates/unfold/helpers/app_list_default.html,sha256=74x9GIhXHp4J-qxfyS7siSaV8A4XlRwc_ivzvvKw_FY,3902
148
148
  unfold/templates/unfold/helpers/attrs.html,sha256=Mwpj72kuwYj8hOT3J2T8qx6f1r_4xwwaS1slHA-82jI,166
149
- unfold/templates/unfold/helpers/boolean.html,sha256=6gXAMEJcNVB14je9uN32dxImXP3KMCiWPeKU5EAnawA,569
150
- unfold/templates/unfold/helpers/breadcrumb_item.html,sha256=Q9Usvwz2iGI9AYlNgyN0OZ9ZPftcoaXk37nxsFmCJSE,201
151
- unfold/templates/unfold/helpers/delete_submit_line.html,sha256=4aijRBjLFqVDZpUxUz_DfLS39IHl0-aTCCD5dyXW_qY,671
152
- unfold/templates/unfold/helpers/display_header.html,sha256=HFuiSsgjrrfUFd8uwsxNiHbe4Mpt-9BeaUShgwbGGbo,1701
149
+ unfold/templates/unfold/helpers/boolean.html,sha256=kcSZr3siQeBWIy_jsx1tFf4m6IB3ooRnu8UUNQrh6so,569
150
+ unfold/templates/unfold/helpers/breadcrumb_item.html,sha256=9T6ojN7LOXIlgwSwlIwHgy5U22eQYtarCqcmzsQIoPU,201
151
+ unfold/templates/unfold/helpers/change_list_actions.html,sha256=p1_vC2Q_Fb-gAHA8y1zzOXqqn5TPQMrQfE26PkOY_ok,656
152
+ unfold/templates/unfold/helpers/change_list_filter.html,sha256=O_niVAEoJqbrM-GbG5wmUUvl3rdM0cAXQs3Mx2lZqqg,1911
153
+ unfold/templates/unfold/helpers/change_list_filter_actions.html,sha256=7_IzpxL-Vz9Whi_vxybpzUJObpgHTxBuDL8DiP1bXE4,1236
154
+ unfold/templates/unfold/helpers/delete_submit_line.html,sha256=N1w_TDIDN7Spj5diuhRUVOVgz2TiSeHVK2QvBjTLv2w,665
155
+ unfold/templates/unfold/helpers/display_header.html,sha256=rhru2GSxR0mH8_FEQuQVIS8gGGjaiWMV9f2HCPGMsaQ,1698
153
156
  unfold/templates/unfold/helpers/display_label.html,sha256=LS9DWzYjHkYLV27sZDwyXlg2sLJ0AlId9FbjnXpsbfg,317
157
+ unfold/templates/unfold/helpers/edit_inline/tabular_delete.html,sha256=KFp6d8whXp2DlRyHJF1OsCkJa3Vy-UU-nkQXSlpuui0,928
158
+ unfold/templates/unfold/helpers/edit_inline/tabular_error.html,sha256=8XGlgUJ47JllmXhwPZDlcl81NzZmvuBIp8FZBWoeu9Q,336
159
+ unfold/templates/unfold/helpers/edit_inline/tabular_field.html,sha256=BRCAXdv-HBWyhKK__whswrNiXIH6roexbTKo1w41Btc,919
160
+ unfold/templates/unfold/helpers/edit_inline/tabular_heading.html,sha256=ER8R64wnKOu26WTwP4_Wxt-LRB_zRkXLhheZ_utVvKY,1523
161
+ unfold/templates/unfold/helpers/edit_inline/tabular_row.html,sha256=Cfs2m5eh3mLcMgL0_dSAokAscgq4q19KsnUPZECmDgw,2013
162
+ unfold/templates/unfold/helpers/edit_inline/tabular_title.html,sha256=JPSue6mD1-KZ3tiymbRrv1G2XgsSim4cT_6HhzYJaYY,2710
154
163
  unfold/templates/unfold/helpers/field.html,sha256=Ds-zUHkdyxamfUCVNhxvtM0XoJg9OCA0QcsLbLWv4oo,882
155
- unfold/templates/unfold/helpers/field_readonly.html,sha256=QbX4jWVFCVvW6ZxOTxcGcarLUtUoCOH5KTIBwAodRzo,237
156
- unfold/templates/unfold/helpers/field_readonly_value.html,sha256=E6eIJbO-Y2TWmmzpffC5F3l7KYZ8G-QxstUIHTVRjKg,461
157
- unfold/templates/unfold/helpers/fieldset_row.html,sha256=Eh2OO1WjqSs-wkGIo-d-ZfAE5dlp_n6lDd7uuX26_Pc,4374
158
- unfold/templates/unfold/helpers/fieldsets_tabs.html,sha256=GjFPlQgL-qv8bbxje5Zm1XL9v2_qFh-U3wcVvAOO5sE,1529
164
+ unfold/templates/unfold/helpers/field_readonly.html,sha256=4qtXjWE7SA2qZSTYLOv0lT4pQfD0TE34mvWQJY7jhS8,237
165
+ unfold/templates/unfold/helpers/field_readonly_value.html,sha256=Xu9v9tRMfh9ME36ZskMMF39MsRTJZDWtoV1_x4vYQtM,462
166
+ unfold/templates/unfold/helpers/fieldset_row.html,sha256=GSrMJZSNY1Tn6y3APOAeADg8Vdsa9QO_RMtj4I2SvQM,445
167
+ unfold/templates/unfold/helpers/fieldset_row_checkbox.html,sha256=47i6PkXhiKwWb4_HjsWb6uNRZQvAYdA-LoouDshoQU4,1472
168
+ unfold/templates/unfold/helpers/fieldset_row_field.html,sha256=pLtCZPXBCM_zBRQOzveNgE25MVqHWw9q4-9fdVKVAY0,643
169
+ unfold/templates/unfold/helpers/fieldsets_tabs.html,sha256=KW2rzVqpIICEu55GR_KnuOoXOGnqTZOQAKIuW-u8cAU,1459
159
170
  unfold/templates/unfold/helpers/form_errors.html,sha256=EwerIJptSCWXvtAJ1IZKfEn98qlShBIGavsTThbklAs,266
160
171
  unfold/templates/unfold/helpers/form_label.html,sha256=BRX3DxVQfEvcmpFcRuhl4v_icMCCd5O_zmYm6MGLtts,327
161
- unfold/templates/unfold/helpers/header.html,sha256=Cl2rNccSi7HCf-Sl3g2YFe9DVVv6_Kw5GiV3Z0qHoaU,1050
172
+ unfold/templates/unfold/helpers/header.html,sha256=ZoQH_Fs1v7fbo6fWQ5UEgfM9xPQlsYQxeabLf7nndB8,1050
162
173
  unfold/templates/unfold/helpers/help_text.html,sha256=o-2_hyruIr_Xt0fo38aGgrpptPJFhddnVMPOVQOYhE4,113
163
- unfold/templates/unfold/helpers/history.html,sha256=tfpOWNDzo2k7orcb7avfFBWVFe8Z5yVxtMkshD2C42E,1927
164
- unfold/templates/unfold/helpers/label.html,sha256=ye13yN-yY_A9Oe_9CEUJSwCgc7wWwgNdSc1zaeUtcJ8,900
165
- unfold/templates/unfold/helpers/language_switch.html,sha256=1B53ken8CmwOcaPzjJ7D_EP2B_ToTaMJxQLdKk47uSQ,1463
166
- unfold/templates/unfold/helpers/messages/debug.html,sha256=kl-_k6gZg2o2b1BaIjJt3Li9gJ5xMpXngTrN_YsLdOE,144
167
- unfold/templates/unfold/helpers/messages/error.html,sha256=j6YsIJKltSHV7ZqXJgLxJI9hzjmDSchary0OX7BQ5M8,595
168
- unfold/templates/unfold/helpers/messages/errornote.html,sha256=5ChxoVYkF4jI-cw72gVHh0CRxDnG9ME_U6UQOArax2k,404
169
- unfold/templates/unfold/helpers/messages/info.html,sha256=SwAZPKKa7rF4hPxwsmakpF_QYkfy_jsCt5ODJbNC2Pk,144
170
- unfold/templates/unfold/helpers/messages/success.html,sha256=eJcvQtV1nLpS0h3cXzclM_W9dCmDGwHUiDIBlXPVlC4,148
171
- unfold/templates/unfold/helpers/messages/warning.html,sha256=NEsNP7HLU3bdEOKetq0co9qyDsOK1_CAIygXB2Rerxk,152
174
+ unfold/templates/unfold/helpers/history.html,sha256=QUYUQXcccyIl9pKPwVS_R8Is2Zo096rLZA6inlGNhkw,1921
175
+ unfold/templates/unfold/helpers/label.html,sha256=pGzRBfuY8tos-imyA9psBxj7r93LUTfr78ff2rYPvmc,900
176
+ unfold/templates/unfold/helpers/language_switch.html,sha256=WDVFkPrym3Kd5PKlULSxhZLuk0w3DCaIZVvjgPvW1SE,1469
177
+ unfold/templates/unfold/helpers/messages/debug.html,sha256=7GhaVXLkrdyecr6yAnLxyyPT5a8TMHkRFq-EfXJrymI,141
178
+ unfold/templates/unfold/helpers/messages/error.html,sha256=5s51qKr0vHnIWngsc2U1TK9mAV3yBqwa7ekAYMyumlI,592
179
+ unfold/templates/unfold/helpers/messages/errornote.html,sha256=COvwirkeycdHleGgJz_k38atVllwWZwN5Jrdmx3txQ0,401
180
+ unfold/templates/unfold/helpers/messages/info.html,sha256=0QslGEt8aFOwNcUmBZ9v-JapBTntT7dyu7pMgb7pOAw,141
181
+ unfold/templates/unfold/helpers/messages/success.html,sha256=FVg3HNLW7i6VVZLqiUzQKw1MThvxeCbLm1RXcG6xfBY,145
182
+ unfold/templates/unfold/helpers/messages/warning.html,sha256=1bJj813EfxNSWcdQj6rM9bon4QTgMyrMydZY521h53E,149
172
183
  unfold/templates/unfold/helpers/messages.html,sha256=I9RIKfi4T65AG16-2s0C32RwbFkn0qLhdSqDfXpSbyE,915
173
- unfold/templates/unfold/helpers/navigation.html,sha256=3-vUm7vrxfCk6y1CUKGyiYeQaYjV0qNJSO3AAYKBun4,1252
184
+ unfold/templates/unfold/helpers/navigation.html,sha256=HNr9bxZOg84zsbgORkOhJFXKSp0c2im438yiWCfonb0,787
185
+ unfold/templates/unfold/helpers/navigation_header.html,sha256=LFC-Wwhq0Zow9wMBxz8LE-TBVywN0qC2KnLFFakO-kc,591
174
186
  unfold/templates/unfold/helpers/pagination_current_item.html,sha256=4cZ2KLVcP0Y7xuGyXgexDQ07r94cgM5Gnmtv11dkRPQ,69
175
- unfold/templates/unfold/helpers/pagination_ellipsis.html,sha256=Ar9Ntf2I_79mIVW5Hadwkn1Kx1Lj3d8eIXNXI1IIBfg,56
176
- unfold/templates/unfold/helpers/search.html,sha256=dIB1jGNgt_KahTKRFRKqNCERwutXG1BMnOgWm-BlX_Q,1607
177
- unfold/templates/unfold/helpers/search_results.html,sha256=liLy0JnKaDUKhVpsvPM6PKqqLO_rwuBf6whMo0QYMFg,637
178
- unfold/templates/unfold/helpers/site_icon.html,sha256=MWGECpFsRJcBJiLLxDbUUKTYLNR1wMn8gOlvUPN5ugo,788
179
- unfold/templates/unfold/helpers/site_logo.html,sha256=05tqXzHy--pluceRQ2jDUZCFX9DjPHdBqGaieUv9sXk,424
180
- unfold/templates/unfold/helpers/submit.html,sha256=oSzq85LRLhdOlbFtFZFhYm6ucT95u6LunTeSTDClszQ,206
181
- unfold/templates/unfold/helpers/tab_action.html,sha256=Hq20p5yRWi-wPwkFVI5uekoAFI4IlkucYr7o1qjlrYw,325
182
- unfold/templates/unfold/helpers/tab_list.html,sha256=MN8EzKsN7hBzTtlC71E1haSsDz2mCAhENLnVCi_00a0,4515
183
- unfold/templates/unfold/helpers/theme_switch.html,sha256=LzMTlNEbZaMN8UpdXoVZ6_cFCX1iBd1UcmT3gmCZOYE,2196
184
- unfold/templates/unfold/helpers/userlinks.html,sha256=yg6b17oFDzN9US7rnbzwwrmIzdull0yOc76nu2y_E-c,763
185
- unfold/templates/unfold/helpers/welcomemsg.html,sha256=T50G1zypryUk0oOBmJCIvKioGIHbvYMPb1G243ONPQs,1670
187
+ unfold/templates/unfold/helpers/pagination_ellipsis.html,sha256=8g0KUUKtqRkXx_EBLGtsJsiYQO4tPS3GazZjxT90e0M,56
188
+ unfold/templates/unfold/helpers/search.html,sha256=w8Ute3qVfSIqUXzA3TKOx91RzW_qnffFi2Oe9qedtV4,1643
189
+ unfold/templates/unfold/helpers/search_results.html,sha256=5gxOAfFBPOkRgDziyYio6ZXcDG1bzFw7t-KXGFaWrUk,653
190
+ unfold/templates/unfold/helpers/site_icon.html,sha256=eoOk1OYKuqeG0Pl0WfTifNcj9-x8FaAUarBuXNse7yU,876
191
+ unfold/templates/unfold/helpers/site_logo.html,sha256=S_QJoT2qh0xw0ciaKxoT4GJ6QIH5eqgRSC0abbWWkOI,423
192
+ unfold/templates/unfold/helpers/submit.html,sha256=4Mgf4lx7Atm8GPqD6LTJK3NA9zoSJjs9VPig7sDp8Ao,203
193
+ unfold/templates/unfold/helpers/tab_action.html,sha256=l7TBZm5FjDjlJpTsYXFonLSFBDpN91jDiILY3hjjj5s,376
194
+ unfold/templates/unfold/helpers/tab_list.html,sha256=FT_DMLyS0fBcV8LNJnwtGbkg0agDsLe0EmcawDfOxig,4509
195
+ unfold/templates/unfold/helpers/theme_switch.html,sha256=jiHqwz46GFb_pXjP23VTzV0S4E2LB-fdKpsIfjDaB8w,2201
196
+ unfold/templates/unfold/helpers/userlinks.html,sha256=oZqiwCxG_zRecAbzYrr8_hQvkndVB6-liP6LEZM1UZc,863
197
+ unfold/templates/unfold/helpers/welcomemsg.html,sha256=41ByWp5oZrEIzWtz3qqa3FEatjcdcKEOMQEjKp5ZuAs,1822
186
198
  unfold/templates/unfold/layouts/base.html,sha256=bAXZDbyiyxNiE-49mqr7pHUFhC2mHZQzIDUY-js_yZ0,379
187
- unfold/templates/unfold/layouts/base_simple.html,sha256=Znb4SJqQ0Bk-sz4nPHrQXjLQtjmO6x1_xVtq7HxsJTI,1178
188
- unfold/templates/unfold/layouts/skeleton.html,sha256=iXWxjILRlHzuIRC4JkSRDUVW6VfGnhrbeOYLlv8uWMU,4147
199
+ unfold/templates/unfold/layouts/base_simple.html,sha256=VigjNWnWOt_XtbahvqsroPf8mdwl7cDGbg5fEaLmG9s,1211
200
+ unfold/templates/unfold/layouts/skeleton.html,sha256=Z0N9FkqQRmBANMHg68-I_wupbywR3OThGzNMQGLwS3w,4540
189
201
  unfold/templates/unfold/templatetags/preserve_changelist_filters.html,sha256=sx2jUhogNY4emBhY8PqxQ6mXifbXQb_IQI9Hd0boJI0,111
190
- unfold/templates/unfold/widgets/clearable_file_input.html,sha256=VrQJaYtdbWke1hkmx28nYLVgXlRK7c8lD2FftqadVpY,2160
191
- unfold/templates/unfold/widgets/clearable_file_input_small.html,sha256=RaJ5ITNFudOI-L3M3RVD58jk_kUvzHVU4mwQYs6ETEo,2810
202
+ unfold/templates/unfold/widgets/clearable_file_input.html,sha256=4vsLRjqOmGqdU4aPSq81rc-mdRvpBr-H_bC5ScyUkEY,2231
203
+ unfold/templates/unfold/widgets/clearable_file_input_small.html,sha256=NNlosUwhzv-3SZH9LdliL5c6fdoVNRb1JP0uHwFV-N8,2849
192
204
  unfold/templates/unfold/widgets/date.html,sha256=WXo2LG1v_gBZBSg-zocj7oujMKI0MWLYCIFfB04HMLQ,122
193
- unfold/templates/unfold/widgets/foreign_key_raw_id.html,sha256=Us8UqXRfRNWbQQn_9NMRO4ddUvt9Q53_NyFYUkdxY_g,1075
194
- unfold/templates/unfold/widgets/radio.html,sha256=3WcmclQNg7R_pRjEHL1dHkGjAzWlWNYnhHkAirC4nuA,646
205
+ unfold/templates/unfold/widgets/foreign_key_raw_id.html,sha256=7-JPapXS2Ty0MLXNdZ1jCuydqc6JyDs-8-w9b8TcmVU,1075
206
+ unfold/templates/unfold/widgets/radio.html,sha256=7Mgc92mMwJdVLjCxoGj5lo76KNaN5dKKktV3vzmbeqA,652
195
207
  unfold/templates/unfold/widgets/radio_option.html,sha256=UVgNUd_DuIHc4tRpnvYnJwG67PycYT2sBAyuVGAY0RM,307
196
- unfold/templates/unfold/widgets/range.html,sha256=oyA1EZRHotsAlLZfpy6oTiurEH4ygHnaUIAlpz99zKo,294
197
- unfold/templates/unfold/widgets/related_widget_wrapper.html,sha256=YqKQ0PuHmEr_vp3eq7shcM87Cs-T8P1j-FXIhUa6vp4,3830
208
+ unfold/templates/unfold/widgets/range.html,sha256=Zhfj2VTusS3nZjOYR7slcjk1JtFK0psZbaSCw6TDY1I,294
209
+ unfold/templates/unfold/widgets/related_widget_wrapper.html,sha256=4RsFmwlm6De85wsP6W4PvqKosNUPKKNb95RIRh0UUgs,3895
198
210
  unfold/templates/unfold/widgets/split_datetime.html,sha256=-3nXwdQitkG_QtMXtQx76kO2_Z1F6xwPYmnjybBDLBo,1606
199
211
  unfold/templates/unfold/widgets/split_datetime_vertical.html,sha256=39lZsRyRcKr8DIcy9oL39zC8nAHZTHwW6gyTYOKePrQ,806
200
212
  unfold/templates/unfold/widgets/split_money.html,sha256=AFLUBmzGbY-RXgsfz7gaDxVRhplaIPhXjg_hWYo9xcY,352
201
213
  unfold/templates/unfold/widgets/textarea.html,sha256=-ZLDGrtASero7L-J3VvTNq_KjPAZh_kLVw0Ow3awqXM,144
202
- unfold/templates/unfold/widgets/textarea_expandable.html,sha256=4xIGWb20DuwiwumndByrAyh7xF-ReXKLulSpDImX_cs,459
214
+ unfold/templates/unfold/widgets/textarea_expandable.html,sha256=Pqi2udY0FWxVA-B1OIUSqITh7OXTdWmAZUOtGWAu4oo,475
203
215
  unfold/templates/unfold/widgets/time.html,sha256=WXo2LG1v_gBZBSg-zocj7oujMKI0MWLYCIFfB04HMLQ,122
204
216
  unfold/templates/unfold/widgets/url.html,sha256=IRLgW44VTKN7UrSWeywJwaxQhfG5jhhXuT-KTadKX58,304
205
217
  unfold/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
206
- unfold/templatetags/unfold.py,sha256=7N4wUXIKjJazdbuHQs-H8xyRkWIhHVhk6j2rYE-yXW8,8379
207
- unfold/templatetags/unfold_list.py,sha256=ofVee2a5WtBVNFExzqxvn8UrSxmPzczR4gF5jTbu0zU,13986
218
+ unfold/templatetags/unfold.py,sha256=GHotGRUXrDGD4lu-0vXdRGvhEvdNq-Xdut9dp3FMB2c,10971
219
+ unfold/templatetags/unfold_list.py,sha256=QSDm69hqo3GpOMRe4O2uw7KpGirQCzXnpq23ZrZNyPw,14239
208
220
  unfold/typing.py,sha256=1P8PWM2oeaceUJtA5j071RbKEBpHYaux441u7Hd6wv4,643
209
221
  unfold/utils.py,sha256=36WgmgGRayf_fkNtjoFoI1_G9w8f8gZflNzzqQ3256U,5459
210
222
  unfold/views.py,sha256=hQCyeeMa9kcJV1IZeeYqj8PGW7J4QWME8n-5n0UGmiU,1003
211
- unfold/widgets.py,sha256=wwiAbb_7-UWvFcH3HdnTv5f26fjiQn0h5tlAK3-kXVY,17186
212
- django_unfold-0.43.0.dist-info/LICENSE.md,sha256=Ltk_quRyyvV3J5v3brtOqmibeZSw2Hrb8bY1W3ya0Ik,1077
213
- django_unfold-0.43.0.dist-info/METADATA,sha256=jJQ__BQbwCGpQ0GMEihLpYLcn3rm5IJWxLLJI-81jXA,4699
214
- django_unfold-0.43.0.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
215
- django_unfold-0.43.0.dist-info/RECORD,,
223
+ unfold/widgets.py,sha256=DUgbxrrOa1rR8sAb-KyLCHPdGCXG6ZAGI9oPg1aT88U,17316
224
+ django_unfold-0.44.0.dist-info/LICENSE.md,sha256=Ltk_quRyyvV3J5v3brtOqmibeZSw2Hrb8bY1W3ya0Ik,1077
225
+ django_unfold-0.44.0.dist-info/METADATA,sha256=6QpoMRXbTiSnm_IEBYwXnGkP97H_plS7HcHwhYjhZuA,4699
226
+ django_unfold-0.44.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
227
+ django_unfold-0.44.0.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 1.9.1
2
+ Generator: poetry-core 1.9.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -80,7 +80,7 @@ class TextFilter(admin.SimpleListFilter):
80
80
  {
81
81
  "form": self.form_class(
82
82
  name=self.parameter_name,
83
- label=_("By {}").format(self.title),
83
+ label=_("By %(filter_title)s") % {"filter_title": self.title},
84
84
  data={self.parameter_name: self.value()},
85
85
  ),
86
86
  },
@@ -103,7 +103,7 @@ class FieldTextFilter(ValueMixin, admin.FieldListFilter):
103
103
  return (
104
104
  {
105
105
  "form": self.form_class(
106
- label=_("By {}").format(self.title),
106
+ label=_("By %(filter_title)s") % {"filter_title": self.title},
107
107
  name=self.lookup_kwarg,
108
108
  data={self.lookup_kwarg: self.value()},
109
109
  ),
@@ -120,7 +120,7 @@ class DropdownFilter(admin.SimpleListFilter):
120
120
  return (
121
121
  {
122
122
  "form": self.form_class(
123
- label=_("By {}").format(self.title),
123
+ label=_("By %(filter_title)s") % {"filter_title": self.title},
124
124
  name=self.parameter_name,
125
125
  choices=[self.all_option, *self.lookup_choices],
126
126
  data={self.parameter_name: self.value()},
@@ -147,7 +147,7 @@ class ChoicesDropdownFilter(ValueMixin, DropdownMixin, admin.ChoicesFieldListFil
147
147
 
148
148
  yield {
149
149
  "form": self.form_class(
150
- label=_("By {}").format(self.title),
150
+ label=_("By %(filter_title)s") % {"filter_title": self.title},
151
151
  name=self.lookup_kwarg,
152
152
  choices=choices,
153
153
  data={self.lookup_kwarg: self.value()},
@@ -164,7 +164,7 @@ class RelatedDropdownFilter(ValueMixin, DropdownMixin, admin.RelatedFieldListFil
164
164
  def choices(self, changelist: ChangeList):
165
165
  yield {
166
166
  "form": self.form_class(
167
- label=_("By {}").format(self.title),
167
+ label=_("By %(filter_title)s") % {"filter_title": self.title},
168
168
  name=self.lookup_kwarg,
169
169
  choices=[self.all_option, *self.lookup_choices],
170
170
  data={self.lookup_kwarg: self.value()},
@@ -1,7 +1,7 @@
1
1
  {% load i18n %}
2
2
 
3
3
  {% with choices.0 as choice %}
4
- <div class="flex flex-col mb-6">
4
+ <div class="flex flex-col">
5
5
  <h3 class="font-semibold mb-2 text-font-important-light dark:text-font-important-dark">{% blocktrans with filter_title=title %}By {{ filter_title }}{% endblocktrans %}</h3>
6
6
 
7
7
  <div class="flex flex-col space-y-4">
@@ -1,7 +1,7 @@
1
1
  {% load i18n %}
2
2
 
3
3
  {% with choices.0 as choice %}
4
- <div class="flex flex-col mb-6">
4
+ <div class="flex flex-col">
5
5
  <h3 class="font-semibold mb-2 text-font-important-light dark:text-font-important-dark">{% blocktrans with filter_title=title %}By {{ filter_title }}{% endblocktrans %}</h3>
6
6
 
7
7
  <div class="flex flex-col space-y-4">
@@ -1,7 +1,7 @@
1
1
  {% load i18n %}
2
2
 
3
3
  {% with choices.0 as choice %}
4
- <div class="flex flex-col mb-6">
4
+ <div class="flex flex-col">
5
5
  <h3 class="font-semibold mb-2 text-font-important-light dark:text-font-important-dark">{% blocktrans with filter_title=title %}By {{ filter_title }}{% endblocktrans %}</h3>
6
6
 
7
7
  <div class="flex flex-row gap-4">
@@ -1,7 +1,7 @@
1
1
  {% load i18n %}
2
2
 
3
3
  {% with choices.0 as choice %}
4
- <div class="flex flex-col mb-6">
4
+ <div class="flex flex-col">
5
5
  <h3 class="font-semibold mb-2 text-font-important-light dark:text-font-important-dark">{% blocktrans with filter_title=title %}By {{ filter_title }}{% endblocktrans %}</h3>
6
6
 
7
7
  {% for field in choice.form %}
@@ -2,18 +2,18 @@
2
2
  {% load l10n %}
3
3
 
4
4
  {% with choices.0 as choice %}
5
- <div class="admin-numeric-filter-wrapper mb-6">
5
+ <div class="admin-numeric-filter-wrapper">
6
6
  <h3 class="font-semibold mb-2 text-font-important-light dark:text-font-important-dark">
7
7
  {% blocktrans with filter_title=title %}By {{ filter_title }}{% endblocktrans %}
8
8
  </h3>
9
9
 
10
10
  {% if choice.min is not None and choice.max is not None and choice.step %}
11
11
  <div class="admin-numeric-filter-slider-tooltips">
12
- <span class="admin-numeric-filter-slider-tooltip-from border cursor-not-allowed flex flex-grow flex-row items-center mr-auto rounded-md shadow-sm px-3 py-2 w-full dark:bg-gray-900 dark:border-gray-700 dark:text-font-default-dark">
12
+ <span class="admin-numeric-filter-slider-tooltip-from border cursor-not-allowed flex flex-grow flex-row items-center mr-auto rounded shadow-sm px-3 py-2 w-full dark:bg-base-900 dark:border-base-700 dark:text-font-default-dark">
13
13
  {{ choice.value_from }}
14
14
  </span>
15
15
 
16
- <span class="admin-numeric-filter-slider-tooltip-to border cursor-not-allowed flex flex-grow flex-row items-center rounded-md shadow-sm px-3 py-2 w-full dark:bg-gray-900 dark:border-gray-700 dark:text-font-default-dark">
16
+ <span class="admin-numeric-filter-slider-tooltip-to border cursor-not-allowed flex flex-grow flex-row items-center rounded shadow-sm px-3 py-2 w-full dark:bg-base-900 dark:border-base-700 dark:text-font-default-dark">
17
17
  {{ choice.value_to }}
18
18
  </span>
19
19
  </div>
@@ -7,7 +7,7 @@
7
7
  {% include widget.template_name %}
8
8
  {% endwith %}
9
9
 
10
- <a x-on:click="$el.parentElement.remove()" class="bg-white border cursor-pointer flex items-center h-9.5 justify-center ml-2 rounded shadow-sm shrink-0 text-red-600 text-sm w-9.5 dark:bg-gray-900 dark:border-gray-700 dark:text-red-500">
10
+ <a x-on:click="$el.parentElement.remove()" class="bg-white border border-base-200 cursor-pointer flex items-center h-9.5 justify-center ml-2 rounded shadow-sm shrink-0 text-red-600 text-sm w-9.5 dark:bg-base-900 dark:border-base-700 dark:text-red-500">
11
11
  <span class="material-symbols-outlined text-sm">delete</span>
12
12
  </a>
13
13
  </div>
@@ -19,14 +19,14 @@
19
19
  {% include template.template_name %}
20
20
  {% endwith %}
21
21
 
22
- <a x-on:click="items.splice(index, 1)" class="bg-white border cursor-pointer flex items-center h-9.5 justify-center ml-2 rounded shadow-sm shrink-0 text-red-600 text-sm w-9.5 dark:bg-gray-900 dark:border-gray-700 dark:text-red-500">
22
+ <a x-on:click="items.splice(index, 1)" class="bg-white border border-base-200 cursor-pointer flex items-center h-9.5 justify-center ml-2 rounded shadow-sm shrink-0 text-red-600 text-sm w-9.5 dark:bg-base-900 dark:border-base-700 dark:text-red-500">
23
23
  <span class="material-symbols-outlined text-sm">delete</span>
24
24
  </a>
25
25
  </div>
26
26
  </template>
27
27
 
28
28
  <div class="flex flex-row">
29
- <div x-on:click="items.push({ key: new Date().getTime()})" class="bg-primary-600 border border-transparent cursor-pointer font-medium inline-block px-3 py-2 rounded-md text-center text-sm text-white w-full lg:w-auto">
29
+ <div x-on:click="items.push({ key: new Date().getTime()})" class="bg-primary-600 border border-transparent cursor-pointer font-medium inline-block px-3 py-2 rounded text-center text-sm text-white w-full lg:w-auto">
30
30
  {% trans "Add new item" %}
31
31
  </div>
32
32
  </div>