django-unfold 0.28.1__py3-none-any.whl → 0.29.1__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- {django_unfold-0.28.1.dist-info → django_unfold-0.29.1.dist-info}/METADATA +60 -1
- {django_unfold-0.28.1.dist-info → django_unfold-0.29.1.dist-info}/RECORD +26 -25
- unfold/static/unfold/css/styles.css +1 -1
- unfold/styles.css +15 -1
- unfold/templates/admin/actions.html +1 -1
- unfold/templates/admin/app_list.html +1 -1
- unfold/templates/admin/change_form.html +0 -16
- unfold/templates/admin/edit_inline/stacked.html +12 -2
- unfold/templates/admin/edit_inline/tabular.html +16 -10
- unfold/templates/admin/filter.html +2 -2
- unfold/templates/admin/login.html +2 -2
- unfold/templates/admin/nav_sidebar.html +2 -2
- unfold/templates/unfold/components/button.html +3 -0
- unfold/templates/unfold/helpers/account_links.html +1 -1
- unfold/templates/unfold/helpers/field_readonly_value.html +1 -1
- unfold/templates/unfold/helpers/fieldset_row.html +45 -19
- unfold/templates/unfold/helpers/navigation.html +17 -15
- unfold/templates/unfold/helpers/tab_action.html +1 -1
- unfold/templates/unfold/helpers/tab_list.html +6 -2
- unfold/templates/unfold/helpers/theme_switch.html +1 -1
- unfold/templates/unfold/widgets/foreign_key_raw_id.html +1 -1
- unfold/templates/unfold/widgets/split_datetime.html +7 -7
- unfold/templatetags/unfold.py +1 -0
- unfold/widgets.py +8 -4
- {django_unfold-0.28.1.dist-info → django_unfold-0.29.1.dist-info}/LICENSE.md +0 -0
- {django_unfold-0.28.1.dist-info → django_unfold-0.29.1.dist-info}/WHEEL +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: django-unfold
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.29.1
|
4
4
|
Summary: Modern Django admin theme for seamless interface development
|
5
5
|
Home-page: https://unfoldadmin.com
|
6
6
|
License: MIT
|
@@ -76,6 +76,7 @@ Did you decide to start using Unfold but you don't have time to make the switch
|
|
76
76
|
- [Custom unfold @action decorator](#custom-unfold-action-decorator)
|
77
77
|
- [Action handler functions](#action-handler-functions)
|
78
78
|
- [Action examples](#action-examples)
|
79
|
+
- [Action with form example](#action-with-form-example)
|
79
80
|
- [Filters](#filters)
|
80
81
|
- [Text filters](#text-filters)
|
81
82
|
- [Dropdown filters](#dropdown-filters)
|
@@ -490,6 +491,63 @@ class UserAdmin(ModelAdmin):
|
|
490
491
|
)
|
491
492
|
```
|
492
493
|
|
494
|
+
### Action with form example
|
495
|
+
|
496
|
+
Below is an example of an action that will display a form after clicking on the action button on the detail object page.
|
497
|
+
|
498
|
+
```python
|
499
|
+
from django import forms
|
500
|
+
from django.template.loader import render_to_string
|
501
|
+
from django.urls import reverse_lazy
|
502
|
+
|
503
|
+
from unfold.widgets import UnfoldAdminTextInputWidget
|
504
|
+
|
505
|
+
|
506
|
+
class SomeForm(forms.Form):
|
507
|
+
# It is important to set a widget coming from Unfold
|
508
|
+
note = forms.CharField(label=_("Note"), widget=UnfoldAdminTextInputWidget)
|
509
|
+
|
510
|
+
|
511
|
+
@register(User)
|
512
|
+
class UserAdmin(ModelAdmin):
|
513
|
+
actions_detail = ["change_detail_action_block"]
|
514
|
+
form = SomeForm(request.POST or None)
|
515
|
+
|
516
|
+
@action(description=_("Detail"))
|
517
|
+
def change_detail_action_block(self, request: HttpRequest, object_id: int) -> str:
|
518
|
+
user = User.objects.get(pk=object_id)
|
519
|
+
|
520
|
+
if request.method == "POST" and form.is_valid():
|
521
|
+
# Do something with form data
|
522
|
+
form.cleaned_data["note"]
|
523
|
+
|
524
|
+
return redirect(
|
525
|
+
reverse_lazy("admin:users_user_change", args=[object_id])
|
526
|
+
)
|
527
|
+
|
528
|
+
return render_to_string("some/template.html", {
|
529
|
+
"form": form,
|
530
|
+
})
|
531
|
+
```
|
532
|
+
|
533
|
+
Template displaying the form. Please note that breadcrumbs are empty in this case but if you want, you can configure your own breadcrumbs path.
|
534
|
+
|
535
|
+
```html
|
536
|
+
{% extends "admin/base_site.html" %}
|
537
|
+
|
538
|
+
{% block breadcrumbs %}{% endblock %}
|
539
|
+
|
540
|
+
{% block content %}
|
541
|
+
<form action="" method="post" novalidate>
|
542
|
+
{% csrf_token %}
|
543
|
+
|
544
|
+
{% for field in form %}
|
545
|
+
{% include "unfold/helpers/field.html" with field=field %}
|
546
|
+
{% endfor %}
|
547
|
+
</form>
|
548
|
+
{% endblock %}
|
549
|
+
```
|
550
|
+
|
493
551
|
## Filters
|
494
552
|
|
495
553
|
By default, Django admin handles all filters as regular HTML links pointing at the same URL with different query parameters. This approach is for basic filtering more than enough. In the case of more advanced filtering by incorporating input fields, it is not going to work.
|
@@ -1188,6 +1246,7 @@ Below you can find a more complex example which is using multiple components and
|
|
1188
1246
|
| unfold/components/separator.html | Separator, horizontal rule | class |
|
1189
1247
|
| unfold/components/text.html | Paragraph of text | class |
|
1190
1248
|
| unfold/components/title.html | Basic heading element | class |
|
1249
|
+
| unfold/components/button.html | Basic button element | submit |
|
1191
1250
|
|
1192
1251
|
## Unfold development
|
1193
1252
|
|
@@ -72,7 +72,7 @@ unfold/forms.py,sha256=GXEm3CFwglyuEbGdVyEMJTB45Gs-_RvGGlXJEkPy2kw,3688
|
|
72
72
|
unfold/settings.py,sha256=--TdTSWdOA8TQGW4-vjJkjy_zEyd_kZwBr3BIuQ8hzI,1208
|
73
73
|
unfold/sites.py,sha256=Gy_i43j2nizW2g8-mas5icvtk-beKism_CznATW6Ia8,12586
|
74
74
|
unfold/static/unfold/css/simplebar.css,sha256=5LLaEM11pKi6JFCOLt4XKuZxTpT9rpdq_tNlaQytFlU,4647
|
75
|
-
unfold/static/unfold/css/styles.css,sha256=
|
75
|
+
unfold/static/unfold/css/styles.css,sha256=8wvUgqaXjUu7nigSY96egS5cQIlyQZ4Onp5yyVcbDQc,94093
|
76
76
|
unfold/static/unfold/fonts/inter/Inter-Bold.woff2,sha256=O88EyjAeRPE_QEyKBKpK5wf2epUOEu8wwjj5bnhCZqE,46552
|
77
77
|
unfold/static/unfold/fonts/inter/Inter-Medium.woff2,sha256=O88EyjAeRPE_QEyKBKpK5wf2epUOEu8wwjj5bnhCZqE,46552
|
78
78
|
unfold/static/unfold/fonts/inter/Inter-Regular.woff2,sha256=O88EyjAeRPE_QEyKBKpK5wf2epUOEu8wwjj5bnhCZqE,46552
|
@@ -86,15 +86,15 @@ unfold/static/unfold/js/app.js,sha256=CIitJoFqpeZYPw8icGVXYX9tVRUgqFxcPZ2WjWS8Yl
|
|
86
86
|
unfold/static/unfold/js/chart.js,sha256=22W6cFERR-CElMOKRgMMicueMVP0Vf7FBEBYH8Z8tCk,200633
|
87
87
|
unfold/static/unfold/js/htmx.js,sha256=XOLqvnZiyEx46EW9vaJTBUaaWg8CGVVfXJkVsUmJbpI,42820
|
88
88
|
unfold/static/unfold/js/simplebar.js,sha256=t-uG1FAD6ZoiMeN--wac0XRS7SxoDVG6zvRnGuEp7X8,27176
|
89
|
-
unfold/styles.css,sha256
|
90
|
-
unfold/templates/admin/actions.html,sha256=
|
89
|
+
unfold/styles.css,sha256=-NgJI9uEPWEWFlkmkaql4EkSySZyWcH__q8ESkWM58I,18266
|
90
|
+
unfold/templates/admin/actions.html,sha256=fffRBkdfaPASnDC59M6R1Z7h3MFEXn3Y-QU9ZdCI7RE,2647
|
91
91
|
unfold/templates/admin/app_index.html,sha256=lVjMIFsspHQ09LGHKfdfg7TlqlL39AX5LbwoeoZjFhk,1335
|
92
|
-
unfold/templates/admin/app_list.html,sha256=
|
92
|
+
unfold/templates/admin/app_list.html,sha256=AdWB3duShcYHISTS8l-ule088FSQ8Jw9anPbS1-vuYc,3060
|
93
93
|
unfold/templates/admin/auth/user/add_form.html,sha256=iLig-vd2YExXsj0xGBwYhZ4kGUihwYtLtNVhzObgSzg,478
|
94
94
|
unfold/templates/admin/auth/user/change_password.html,sha256=-Wa9ml3yss-kDz0YQxCiwoxs91KQD8eetCt5l6xekWM,2892
|
95
95
|
unfold/templates/admin/base.html,sha256=MGqtCcydXZPnp6dasaWktyd9D6rdUYX01rFGAv7Zkm4,2226
|
96
96
|
unfold/templates/admin/base_site.html,sha256=3ckWrcAdd7Pw1hk6Zwyknab_Qb-rteV9-mXhMnfo6VI,361
|
97
|
-
unfold/templates/admin/change_form.html,sha256=
|
97
|
+
unfold/templates/admin/change_form.html,sha256=oWK5wr0qv6QMJrFQ9Veacozg_CN1DwmBqbzPOuDtiA4,4443
|
98
98
|
unfold/templates/admin/change_form_object_tools.html,sha256=eyeH-i2HgEM0Yi-OJA2D1VnKJyC19A_my1IDGxxoP8Y,593
|
99
99
|
unfold/templates/admin/change_list.html,sha256=18GDZswc1c0xtw2BcKti9SX95Ar9e1BX_HSY0K79g_8,5102
|
100
100
|
unfold/templates/admin/change_list_object_tools.html,sha256=cmMiT2nT20Ph5yfpj9aHPr76Z-JP4aSXp0o-Rnad28s,147
|
@@ -102,14 +102,14 @@ unfold/templates/admin/change_list_results.html,sha256=Ie2NGfIiU0HHy1a5wJ-YJV1do
|
|
102
102
|
unfold/templates/admin/date_hierarchy.html,sha256=BfUPbsLpHZVa40BHBahz1H9RSVuz36Jc3yrlobOiIpw,1306
|
103
103
|
unfold/templates/admin/delete_confirmation.html,sha256=hpa2E14oZEXBBs6W1qdNQuF650TIO2Rhr52Q6UfwVeQ,5166
|
104
104
|
unfold/templates/admin/delete_selected_confirmation.html,sha256=Foka2yvwAMEZre-Kh1KNadRzrCotdKM2U4e6AJQYZu8,4941
|
105
|
-
unfold/templates/admin/edit_inline/stacked.html,sha256=
|
106
|
-
unfold/templates/admin/edit_inline/tabular.html,sha256=
|
107
|
-
unfold/templates/admin/filter.html,sha256=
|
105
|
+
unfold/templates/admin/edit_inline/stacked.html,sha256=kKWuO0un9hebuUZjLLr1mygC7K8MuHfPsnTxL87OqJI,5489
|
106
|
+
unfold/templates/admin/edit_inline/tabular.html,sha256=el0bmcoCBdg-vI3PhfVtIorOeYj5m8QNt77xmWvscbA,13318
|
107
|
+
unfold/templates/admin/filter.html,sha256=0zTLzx31LjC1k3v8Q2lCopegFVZul8psqEJoWaHb-Vg,1752
|
108
108
|
unfold/templates/admin/includes/fieldset.html,sha256=lMVwBifFWKvLvHqZ6yjP6Xf6BJFzi-EOf5JHIxEHmRI,888
|
109
109
|
unfold/templates/admin/includes/object_delete_summary.html,sha256=Nv69SCzyJHFX14iJFfodxKM0IIpQegKZH0fvKB15QJI,468
|
110
110
|
unfold/templates/admin/index.html,sha256=pkGdKWdD3zzOvkRdELvdb15sleSpfl4eHPA14PAh7z0,684
|
111
|
-
unfold/templates/admin/login.html,sha256=
|
112
|
-
unfold/templates/admin/nav_sidebar.html,sha256=
|
111
|
+
unfold/templates/admin/login.html,sha256=J1CmA_DiB5Ba1dXVbT4IS2C8pTie5peVJTxWWQNgVHE,3836
|
112
|
+
unfold/templates/admin/nav_sidebar.html,sha256=cKuC28XU9NT17lrCVugn2cHf39kgkoX499axJt29L3s,1162
|
113
113
|
unfold/templates/admin/object_history.html,sha256=PsbhXFd_3SCB9YkSJeHESp2VqjNlHtUW26mRtaZ-MD0,5069
|
114
114
|
unfold/templates/admin/pagination.html,sha256=KWTPV7_hVSZ1374a-pqHXhnOueNQKu1UnSUYirrWtCk,1173
|
115
115
|
unfold/templates/admin/search_form.html,sha256=8fJlPYHQDCm4Je05wwdNJuJQR6ChLgghWmo-yHSybMs,1099
|
@@ -119,6 +119,7 @@ unfold/templates/registration/logged_out.html,sha256=E7RHtB6AGQwgUIiV7dwJ1DbdfNv
|
|
119
119
|
unfold/templates/registration/password_change_done.html,sha256=i1ZzfTwZHWNWoN9_xHZDdcgLdTOVbTFFD1HUSuG0LkY,1062
|
120
120
|
unfold/templates/registration/password_change_form.html,sha256=zzmqFHfMExS7czgEBdEtetXk2Ae_7jzaID7CpE_xlgo,2225
|
121
121
|
unfold/templates/unfold/change_list_filter.html,sha256=bUDjrVuvE1soFncP8O7qrGonk9O4ozD-nFpbNs3NcrM,2172
|
122
|
+
unfold/templates/unfold/components/button.html,sha256=M_kn5fJPadvBfTUdN56-LMkouvfpUMga7orRJoVifgc,178
|
122
123
|
unfold/templates/unfold/components/card.html,sha256=F0iaFv4F8NOjhka24XJHckJxub_Yhq2tJ4cLu6aTHwI,799
|
123
124
|
unfold/templates/unfold/components/chart/bar.html,sha256=nDdDCUXvFd793OpNgNPQo0vBmvYngMsQyPHVTf1vfOw,297
|
124
125
|
unfold/templates/unfold/components/chart/line.html,sha256=DHaZUFTlCs5cX7ioYdTzoN4ITHWNcEoNSUp7v3hlo_E,298
|
@@ -129,7 +130,7 @@ unfold/templates/unfold/components/progress.html,sha256=pfdSjZD17IK4L5kGO8tRYikp
|
|
129
130
|
unfold/templates/unfold/components/separator.html,sha256=G0IlKIFEXJmLZc0KP2YcsLzkaskeb0PrLvOdoKFTgmc,90
|
130
131
|
unfold/templates/unfold/components/text.html,sha256=-GjxvdiaBQIaNfPSzT6SSIwnc3R27FkSDQMoF3FDPso,102
|
131
132
|
unfold/templates/unfold/components/title.html,sha256=PSiNK-s8jUJfu6f9zCcGOOyLiKxS-dsAFu3aR-yjNdU,131
|
132
|
-
unfold/templates/unfold/helpers/account_links.html,sha256=
|
133
|
+
unfold/templates/unfold/helpers/account_links.html,sha256=4iddfRn6yHZG--aEEme4XnxQa6-gh0jyVt6ymGKb6Xo,1939
|
133
134
|
unfold/templates/unfold/helpers/actions_row.html,sha256=1xd39zx38NOoKuDuxAG7PHeu5x2OTIraQGFkm15Erqg,1681
|
134
135
|
unfold/templates/unfold/helpers/add_link.html,sha256=mIgpKrwqBO1oJ4cwPQWSX1oUHBwHJmy5-2TxUHf-1bo,808
|
135
136
|
unfold/templates/unfold/helpers/app_list.html,sha256=lFnW8p9DcZbI9t3_ee9JX9ERHA0NRL2V88zpzuG4jq8,4720
|
@@ -141,8 +142,8 @@ unfold/templates/unfold/helpers/display_header.html,sha256=HiuaIJ6Y8DSM99OFypLO_
|
|
141
142
|
unfold/templates/unfold/helpers/display_label.html,sha256=LS9DWzYjHkYLV27sZDwyXlg2sLJ0AlId9FbjnXpsbfg,317
|
142
143
|
unfold/templates/unfold/helpers/field.html,sha256=Ds-zUHkdyxamfUCVNhxvtM0XoJg9OCA0QcsLbLWv4oo,882
|
143
144
|
unfold/templates/unfold/helpers/field_readonly.html,sha256=O0gHEW46OWt1oUUk0lZiyR-mztWv_7IH6GpKRm2wUw4,235
|
144
|
-
unfold/templates/unfold/helpers/field_readonly_value.html,sha256=
|
145
|
-
unfold/templates/unfold/helpers/fieldset_row.html,sha256=
|
145
|
+
unfold/templates/unfold/helpers/field_readonly_value.html,sha256=iKVTcAj0AMDI6NU780JWc_S04YyZbxLtNRzW9gGrjRU,451
|
146
|
+
unfold/templates/unfold/helpers/fieldset_row.html,sha256=D3RLCcUouJo1RW4vW7TCKssKmm8NaqUN0w9eoqTXuSE,4135
|
146
147
|
unfold/templates/unfold/helpers/fieldsets_tabs.html,sha256=V3bgW75eozaBDty-xfciGafhCWq_Ba5HfQkk92yRc9A,1445
|
147
148
|
unfold/templates/unfold/helpers/form_errors.html,sha256=EwerIJptSCWXvtAJ1IZKfEn98qlShBIGavsTThbklAs,266
|
148
149
|
unfold/templates/unfold/helpers/form_label.html,sha256=SR4U6iK9w4oels6iGY_Da-yN4BbXQVN9zCDlBGGXcw8,310
|
@@ -154,7 +155,7 @@ unfold/templates/unfold/helpers/messages/error.html,sha256=mlHVdfpG2ycsKIDBJB9CZ
|
|
154
155
|
unfold/templates/unfold/helpers/messages/errornote.html,sha256=5ChxoVYkF4jI-cw72gVHh0CRxDnG9ME_U6UQOArax2k,404
|
155
156
|
unfold/templates/unfold/helpers/messages/info.html,sha256=js95Hm3CzqpP6_XJpnA2vG7qt8eyHmJJJcDF0e5PLtQ,143
|
156
157
|
unfold/templates/unfold/helpers/messages.html,sha256=axUkgdYQySOTKEuRBDkohXFf8dM1ioQt5m6iAR7Ls18,701
|
157
|
-
unfold/templates/unfold/helpers/navigation.html,sha256=
|
158
|
+
unfold/templates/unfold/helpers/navigation.html,sha256=TdBm-7YM6B9qpCAKT1tN6CfPFM6pob6Xz5oojYkcAVA,1185
|
158
159
|
unfold/templates/unfold/helpers/pagination_current_item.html,sha256=4cZ2KLVcP0Y7xuGyXgexDQ07r94cgM5Gnmtv11dkRPQ,69
|
159
160
|
unfold/templates/unfold/helpers/pagination_ellipsis.html,sha256=Ar9Ntf2I_79mIVW5Hadwkn1Kx1Lj3d8eIXNXI1IIBfg,56
|
160
161
|
unfold/templates/unfold/helpers/search.html,sha256=T3JLlzEeHTEpX6qfjNQ0cQPW2rtVIOyE9quEyVHVXsA,1382
|
@@ -162,9 +163,9 @@ unfold/templates/unfold/helpers/search_results.html,sha256=N5CNMJSF91jbJS6OQP0nA
|
|
162
163
|
unfold/templates/unfold/helpers/site_icon.html,sha256=RO-R5yRt6yOx41Z8dpDP4lzwMXFdz8Dp5j8vGUtHzh0,789
|
163
164
|
unfold/templates/unfold/helpers/site_logo.html,sha256=05tqXzHy--pluceRQ2jDUZCFX9DjPHdBqGaieUv9sXk,424
|
164
165
|
unfold/templates/unfold/helpers/submit.html,sha256=oSzq85LRLhdOlbFtFZFhYm6ucT95u6LunTeSTDClszQ,206
|
165
|
-
unfold/templates/unfold/helpers/tab_action.html,sha256=
|
166
|
-
unfold/templates/unfold/helpers/tab_list.html,sha256=
|
167
|
-
unfold/templates/unfold/helpers/theme_switch.html,sha256=
|
166
|
+
unfold/templates/unfold/helpers/tab_action.html,sha256=FMj_aWoVbY4xGXFSkLv94IoiN-N7yy33T_EnDgcXfe4,403
|
167
|
+
unfold/templates/unfold/helpers/tab_list.html,sha256=MUtQM63uH5XB6A3SN1pagB_GuRVAPNWfI9Y-xsMPyRg,2266
|
168
|
+
unfold/templates/unfold/helpers/theme_switch.html,sha256=B5wfWEoMjLJp6V8aR0ClN-_ZUcjU--Jclbqny2sEmNM,2271
|
168
169
|
unfold/templates/unfold/helpers/userlinks.html,sha256=qWjtBt9Q_tU8a874ii0Qqg8t_d-SSYBTB_3QZfNlx9g,634
|
169
170
|
unfold/templates/unfold/helpers/welcomemsg.html,sha256=noRysgSENef4_53pXaTiBCy2or6lQm1ZtmCQVODAB1c,1120
|
170
171
|
unfold/templates/unfold/layouts/base.html,sha256=bAXZDbyiyxNiE-49mqr7pHUFhC2mHZQzIDUY-js_yZ0,379
|
@@ -173,25 +174,25 @@ unfold/templates/unfold/layouts/skeleton.html,sha256=iXrUiggVp36vmBIia5p32c-9Ruy
|
|
173
174
|
unfold/templates/unfold/widgets/clearable_file_input.html,sha256=gAJsfyCnanOyeN4ypp1y7r76znvITV7FYTyWvPsmlDs,1882
|
174
175
|
unfold/templates/unfold/widgets/clearable_file_input_small.html,sha256=LPgiKuMAYPiEupFxdlwc1TozNRV1w9ekdRuv-5P4fgw,2531
|
175
176
|
unfold/templates/unfold/widgets/date.html,sha256=WXo2LG1v_gBZBSg-zocj7oujMKI0MWLYCIFfB04HMLQ,122
|
176
|
-
unfold/templates/unfold/widgets/foreign_key_raw_id.html,sha256=
|
177
|
+
unfold/templates/unfold/widgets/foreign_key_raw_id.html,sha256=VyJjnN0v75-NFb_O25smszKzlRXwl_H9zyPsrBLb11g,1036
|
177
178
|
unfold/templates/unfold/widgets/radio.html,sha256=3WcmclQNg7R_pRjEHL1dHkGjAzWlWNYnhHkAirC4nuA,646
|
178
179
|
unfold/templates/unfold/widgets/radio_option.html,sha256=IZgPx-aWKJuxrSalJ3K50RFd1vwSpb9Qk0yZwfV78_A,368
|
179
180
|
unfold/templates/unfold/widgets/range.html,sha256=28FBtSUgUcG82vpk_I27Lbs5oWZOV_oMzVhx4wj3-Ik,262
|
180
181
|
unfold/templates/unfold/widgets/related_widget_wrapper.html,sha256=0I6wSu8z_sJPqmX6uZev4mQGIIM336d6kvHdHj36ny4,3831
|
181
|
-
unfold/templates/unfold/widgets/split_datetime.html,sha256=
|
182
|
+
unfold/templates/unfold/widgets/split_datetime.html,sha256=u4pSJOVAb4HIzZc4oQmRZe76jtoDx5Ils6b-Gw38LRU,1688
|
182
183
|
unfold/templates/unfold/widgets/split_datetime_vertical.html,sha256=xinCH4kkQ-yKUqcSI7-m-_UEzOEKWqvLTjUa3i-e8EM,881
|
183
184
|
unfold/templates/unfold/widgets/split_money.html,sha256=AFLUBmzGbY-RXgsfz7gaDxVRhplaIPhXjg_hWYo9xcY,352
|
184
185
|
unfold/templates/unfold/widgets/textarea.html,sha256=-ZLDGrtASero7L-J3VvTNq_KjPAZh_kLVw0Ow3awqXM,144
|
185
186
|
unfold/templates/unfold/widgets/textarea_expandable.html,sha256=4xIGWb20DuwiwumndByrAyh7xF-ReXKLulSpDImX_cs,459
|
186
187
|
unfold/templates/unfold/widgets/time.html,sha256=WXo2LG1v_gBZBSg-zocj7oujMKI0MWLYCIFfB04HMLQ,122
|
187
188
|
unfold/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
188
|
-
unfold/templatetags/unfold.py,sha256=
|
189
|
+
unfold/templatetags/unfold.py,sha256=mz5mq7fj2381BEQE6UguBWnBa9gjs1m1DrT5iuXE5nc,6363
|
189
190
|
unfold/templatetags/unfold_list.py,sha256=5xAjQX0_JnVwDaj-wGkGqbjOAtp-a18koWIKj5VfBz0,13867
|
190
191
|
unfold/typing.py,sha256=1P8PWM2oeaceUJtA5j071RbKEBpHYaux441u7Hd6wv4,643
|
191
192
|
unfold/utils.py,sha256=zZdJE4FmwRd7p5a7sJiAoZjBOJitXJduOq7BulyppWM,4803
|
192
193
|
unfold/views.py,sha256=hQCyeeMa9kcJV1IZeeYqj8PGW7J4QWME8n-5n0UGmiU,1003
|
193
|
-
unfold/widgets.py,sha256=
|
194
|
-
django_unfold-0.
|
195
|
-
django_unfold-0.
|
196
|
-
django_unfold-0.
|
197
|
-
django_unfold-0.
|
194
|
+
unfold/widgets.py,sha256=QEcfHCo4q-skqbvqK1h1ETGQp8PItjyQRfMViKr-cYM,15672
|
195
|
+
django_unfold-0.29.1.dist-info/LICENSE.md,sha256=Ltk_quRyyvV3J5v3brtOqmibeZSw2Hrb8bY1W3ya0Ik,1077
|
196
|
+
django_unfold-0.29.1.dist-info/METADATA,sha256=CFuZXOCRzVxKjlNkqNzN8MHKazi7DnIuBGWaol8LTVI,53236
|
197
|
+
django_unfold-0.29.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
198
|
+
django_unfold-0.29.1.dist-info/RECORD,,
|