django-smartbase-admin 0.2.85__py3-none-any.whl → 0.2.87__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.
- django_smartbase_admin/admin/admin_base.py +16 -0
- django_smartbase_admin/admin/widgets.py +2 -0
- django_smartbase_admin/engine/const.py +1 -0
- django_smartbase_admin/engine/modal_view.py +1 -1
- django_smartbase_admin/static/sb_admin/dist/main_style.css +1 -1
- django_smartbase_admin/static/sb_admin/dist/table.js +1 -1
- django_smartbase_admin/static/sb_admin/images/flags/de-at.png +0 -0
- django_smartbase_admin/static/sb_admin/images/flags/de-ch.png +0 -0
- django_smartbase_admin/static/sb_admin/src/css/_inlines.css +11 -7
- django_smartbase_admin/static/sb_admin/src/js/table_modules/selection_module.js +1 -1
- django_smartbase_admin/templates/sb_admin/inlines/stacked_inline.html +19 -13
- django_smartbase_admin/templates/sb_admin/inlines/table_inline.html +3 -3
- django_smartbase_admin/templatetags/sb_admin_tags.py +19 -0
- {django_smartbase_admin-0.2.85.dist-info → django_smartbase_admin-0.2.87.dist-info}/METADATA +1 -1
- {django_smartbase_admin-0.2.85.dist-info → django_smartbase_admin-0.2.87.dist-info}/RECORD +17 -15
- {django_smartbase_admin-0.2.85.dist-info → django_smartbase_admin-0.2.87.dist-info}/LICENSE.md +0 -0
- {django_smartbase_admin-0.2.85.dist-info → django_smartbase_admin-0.2.87.dist-info}/WHEEL +0 -0
|
Binary file
|
|
Binary file
|
|
@@ -148,10 +148,12 @@
|
|
|
148
148
|
display: none;
|
|
149
149
|
}
|
|
150
150
|
|
|
151
|
-
fieldset.module >
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
151
|
+
fieldset.module > header {
|
|
152
|
+
> h2 {
|
|
153
|
+
@apply text-18 font-semibold text-dark-900;
|
|
154
|
+
&.stacked-inline-heading {
|
|
155
|
+
@apply text-24 max-sm:px-24;
|
|
156
|
+
}
|
|
155
157
|
}
|
|
156
158
|
}
|
|
157
159
|
|
|
@@ -162,9 +164,11 @@ fieldset.module > h2 {
|
|
|
162
164
|
border: 0;
|
|
163
165
|
}
|
|
164
166
|
> fieldset {
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
167
|
+
> header {
|
|
168
|
+
>.stacked-inline-heading,
|
|
169
|
+
>.djn-add-item {
|
|
170
|
+
@apply px-24;
|
|
171
|
+
}
|
|
168
172
|
}
|
|
169
173
|
}
|
|
170
174
|
}
|
|
@@ -126,7 +126,7 @@ export class SelectionModule extends SBAdminTableModule {
|
|
|
126
126
|
getUrlParams() {
|
|
127
127
|
const params = {}
|
|
128
128
|
const selectionData = {}
|
|
129
|
-
const selectedArray = Array.from(this.tableSelectedRows)
|
|
129
|
+
const selectedArray = this.table.constants.SELECT_ALL_KEYWORD === this.tableSelectedRows ? this.tableSelectedRows : Array.from(this.tableSelectedRows)
|
|
130
130
|
const deselectedArray = Array.from(this.tableDeselectedRows)
|
|
131
131
|
if (selectedArray.length > 0) {
|
|
132
132
|
selectionData[this.table.constants.SELECTED_ROWS_KWARG_NAME] = selectedArray
|
|
@@ -11,9 +11,24 @@
|
|
|
11
11
|
data-inline-model="{{ inline_admin_formset.inline_model_id }}">
|
|
12
12
|
|
|
13
13
|
{% ifinlineclasses %}<fieldset class="djn-fieldset module {{ inline_admin_formset.classes }}">{% endifinlineclasses %}
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
14
|
+
|
|
15
|
+
<header class="flex items-center mb-24">
|
|
16
|
+
<h2 class="stacked-inline-heading">
|
|
17
|
+
{% if inline_admin_formset.opts.title %}{{ inline_admin_formset.opts.title }}{% else %}{{ inline_admin_formset.opts.verbose_name_plural|capfirst }}{% endif %}
|
|
18
|
+
</h2>
|
|
19
|
+
|
|
20
|
+
<div class="djn-module djn-add-item add-item add-row max-sm:px-24 ml-auto">
|
|
21
|
+
<a href="javascript://" class="add-handler djn-add-handler btn btn-icon ml-auto {{ inline_admin_formset.handler_classes|join:" " }}">
|
|
22
|
+
<svg class="w-20 h-20 md:mr-8">
|
|
23
|
+
<use xlink:href="#Plus"></use>
|
|
24
|
+
</svg>
|
|
25
|
+
<span>
|
|
26
|
+
{% blocktrans with inline_admin_formset.opts.verbose_name|strip_parent_name:inline_opts.verbose_name|title as verbose_name %}Add another {{ verbose_name }}{% endblocktrans %}
|
|
27
|
+
</span>
|
|
28
|
+
</a>
|
|
29
|
+
</div>
|
|
30
|
+
</header>
|
|
31
|
+
|
|
17
32
|
|
|
18
33
|
{{ inline_admin_formset.formset.management_form }}
|
|
19
34
|
{{ inline_admin_formset.formset.non_form_errors }}
|
|
@@ -93,16 +108,7 @@
|
|
|
93
108
|
{% endfor %}
|
|
94
109
|
{% endwith %}
|
|
95
110
|
</div>
|
|
96
|
-
|
|
97
|
-
<a href="javascript://" class="add-handler djn-add-handler btn btn-icon ml-auto {{ inline_admin_formset.handler_classes|join:" " }}">
|
|
98
|
-
<svg class="w-20 h-20 md:mr-8">
|
|
99
|
-
<use xlink:href="#Plus"></use>
|
|
100
|
-
</svg>
|
|
101
|
-
<span>
|
|
102
|
-
{% blocktrans with inline_admin_formset.opts.verbose_name|strip_parent_name:inline_opts.verbose_name|title as verbose_name %}Add another {{ verbose_name }}{% endblocktrans %}
|
|
103
|
-
</span>
|
|
104
|
-
</a>
|
|
105
|
-
</div>
|
|
111
|
+
|
|
106
112
|
{% ifinlineclasses %}</fieldset>{% endifinlineclasses %}
|
|
107
113
|
</div>
|
|
108
114
|
{% endwith %}{# ends with inline_admin_formset.opts as inline_opts #}
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
<th class="original{% if sortable_field_name %} is-sortable{% endif %}"></th>
|
|
53
53
|
{% endif %}
|
|
54
54
|
{% for field in inline_admin_formset.fields %}
|
|
55
|
-
{% if not field.widget.is_hidden %}
|
|
55
|
+
{% if not field.widget.is_hidden and not field|is_row_class_field %}
|
|
56
56
|
<th class="djn-th
|
|
57
57
|
{{ field.label|lower|slugify }}{% if field.required %} required{% endif %}">
|
|
58
58
|
<div class="flex items-center">
|
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
</td>
|
|
101
101
|
</tr>
|
|
102
102
|
{% endif %}
|
|
103
|
-
<tr class="djn-tr form-row{% if inline_admin_form.original or inline_admin_form.show_url %} has_original{% endif %}">
|
|
103
|
+
<tr class="djn-tr form-row{% if inline_admin_form.original or inline_admin_form.show_url %} has_original{% endif %} {% get_row_class inline_admin_form %}">
|
|
104
104
|
<td class="original{% if inline_admin_formset.opts.sortable_field_name %} is-sortable{% endif %}" style="{% if not context_data.is_sortable_active %}display: none;{% endif %}">
|
|
105
105
|
{% if inline_admin_formset.opts.sortable_field_name %}
|
|
106
106
|
<div class="djn-drag-handler">
|
|
@@ -145,7 +145,7 @@
|
|
|
145
145
|
{% for fieldset in inline_admin_form %}
|
|
146
146
|
{% for line in fieldset %}
|
|
147
147
|
{% for field in line %}
|
|
148
|
-
{% if not field.field.is_hidden %}
|
|
148
|
+
{% if not field.field.is_hidden and not field.field|is_row_class_field %}
|
|
149
149
|
<td class="djn-td field-{{ field.field.name }}">
|
|
150
150
|
{% if field.is_readonly %}
|
|
151
151
|
<div class="px-10 py-8">
|
|
@@ -2,12 +2,15 @@ import json
|
|
|
2
2
|
|
|
3
3
|
from django import template
|
|
4
4
|
from django.contrib.admin.templatetags.admin_modify import submit_row
|
|
5
|
+
from django.contrib.admin.utils import lookup_field
|
|
6
|
+
from django.core.exceptions import ObjectDoesNotExist
|
|
5
7
|
from django.core.serializers.json import DjangoJSONEncoder
|
|
6
8
|
from django.template.defaultfilters import json_script
|
|
7
9
|
from django.utils.safestring import mark_safe
|
|
8
10
|
from django.utils.text import get_text_list
|
|
9
11
|
from django.utils.translation import gettext
|
|
10
12
|
|
|
13
|
+
from django_smartbase_admin.engine.const import ROW_CLASS_FIELD
|
|
11
14
|
from django_smartbase_admin.templatetags.base import InclusionSBAdminNode
|
|
12
15
|
|
|
13
16
|
register = template.Library()
|
|
@@ -220,3 +223,19 @@ def call_method(obj, method_name, *args):
|
|
|
220
223
|
if method:
|
|
221
224
|
return method(*args)
|
|
222
225
|
return False
|
|
226
|
+
|
|
227
|
+
|
|
228
|
+
@register.simple_tag
|
|
229
|
+
def get_row_class(inline_admin_form):
|
|
230
|
+
try:
|
|
231
|
+
f, attr, value = lookup_field(
|
|
232
|
+
ROW_CLASS_FIELD, inline_admin_form.original, inline_admin_form.model_admin
|
|
233
|
+
)
|
|
234
|
+
except (AttributeError, ValueError, ObjectDoesNotExist):
|
|
235
|
+
return ""
|
|
236
|
+
return value
|
|
237
|
+
|
|
238
|
+
|
|
239
|
+
@register.filter
|
|
240
|
+
def is_row_class_field(field):
|
|
241
|
+
return isinstance(field, dict) and field["name"] == ROW_CLASS_FIELD
|
|
@@ -3,9 +3,9 @@ django_smartbase_admin/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
3
3
|
django_smartbase_admin/actions/admin_action_list.py,sha256=A-nQiP_iMaH8GPrfd3rtQPdil59WIuzzghfh36wcKhE,19621
|
|
4
4
|
django_smartbase_admin/actions/advanced_filters.py,sha256=Vm8b6TAwNehR8INjolFG7pEYL4ADO7XUiVOWpb0btM0,13481
|
|
5
5
|
django_smartbase_admin/admin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
-
django_smartbase_admin/admin/admin_base.py,sha256=
|
|
6
|
+
django_smartbase_admin/admin/admin_base.py,sha256=Wfog5Nc2IBIRcGzWH70xNhT0EJKrnU60-CHt8LhFxMQ,41557
|
|
7
7
|
django_smartbase_admin/admin/site.py,sha256=VrJBhwgZsLa2GohvjnNL7m4dVR3S4Ou1V1UzfE1qOoQ,6577
|
|
8
|
-
django_smartbase_admin/admin/widgets.py,sha256=
|
|
8
|
+
django_smartbase_admin/admin/widgets.py,sha256=CaQVLfiSLrZ9GyVSoEl6sxqulaYu_3AAR3ntCipb4zw,19270
|
|
9
9
|
django_smartbase_admin/apps.py,sha256=C1wT1YUEZNKcUJfpD01nIZEFgYEsuav52WFKvEURRDU,545
|
|
10
10
|
django_smartbase_admin/compilemessages.py,sha256=-_FEFQlOvE4L8UzSuUxSxZQjgGlwL9IZtmg59fW_kIQ,342
|
|
11
11
|
django_smartbase_admin/engine/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -14,7 +14,7 @@ django_smartbase_admin/engine/admin_base_view.py,sha256=8Pd5a2F0PX5euZkVCeWbcF9J
|
|
|
14
14
|
django_smartbase_admin/engine/admin_entrypoint_view.py,sha256=jfMfcYPfdre2abHfC4KIxaP_epJFuCeTcujGhGd4Tl4,624
|
|
15
15
|
django_smartbase_admin/engine/admin_view.py,sha256=9wGffahDR3IYmhL9ZbX8uitwGdXdw5DIL5GnWBawmJM,4238
|
|
16
16
|
django_smartbase_admin/engine/configuration.py,sha256=P3iSiPm9QBl9etTDJIWzo7DzOBCryGwWtbF288PEtus,8120
|
|
17
|
-
django_smartbase_admin/engine/const.py,sha256=
|
|
17
|
+
django_smartbase_admin/engine/const.py,sha256=0-MZFCce8UnTHaL6tkezMXUf4S2ZoSc5HRGi-T7KcHU,2479
|
|
18
18
|
django_smartbase_admin/engine/dashboard.py,sha256=wrvX0GI-SII2pG0DX8Kvy4JFaM6h8e6R7KSCFddFC64,23642
|
|
19
19
|
django_smartbase_admin/engine/fake_inline.py,sha256=9C2_mltg2P9-xa3vuoo5X_RcFaCRpKGNSy7t1_iiasE,5802
|
|
20
20
|
django_smartbase_admin/engine/field.py,sha256=BD_W0ekE5tQJxUGpUA8bo4ZyFk0u2F_6UTPH4drj0JU,10286
|
|
@@ -22,7 +22,7 @@ django_smartbase_admin/engine/field_formatter.py,sha256=eHbXEBwG8jBc9zKpDQ4T64N5
|
|
|
22
22
|
django_smartbase_admin/engine/filter_widgets.py,sha256=dA5tUQ3d6STmMhMWj0pYH_G1tl0eYX3ZuDQ8b7qHLrE,23767
|
|
23
23
|
django_smartbase_admin/engine/global_filter_form.py,sha256=jlj6e9VYWDPyUNjcgj3gTIkCZXO01NZOWAeU3jFtkoA,249
|
|
24
24
|
django_smartbase_admin/engine/menu_item.py,sha256=rMJFG5xm1T0wF8lUmiAZHzKtt9C0LdbpRFvaP0PlngM,2936
|
|
25
|
-
django_smartbase_admin/engine/modal_view.py,sha256=
|
|
25
|
+
django_smartbase_admin/engine/modal_view.py,sha256=Qzx9kd9shoqCYes_lYkAvX1ItVL41oi2vORUrYUkZkE,2269
|
|
26
26
|
django_smartbase_admin/engine/request.py,sha256=sFjxgmzGXUeCD3hEx-Eu-ebgF8CnrBJDH2e8LF1ieRg,2615
|
|
27
27
|
django_smartbase_admin/integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
28
28
|
django_smartbase_admin/integration/django_cms.py,sha256=asLVmQUDHulGEpkqp5cUv6-aTcZPoeOllPE1_AIWUqM,1062
|
|
@@ -64,9 +64,9 @@ django_smartbase_admin/static/sb_admin/dist/chart.js.LICENSE.txt,sha256=m7M__mzL
|
|
|
64
64
|
django_smartbase_admin/static/sb_admin/dist/confirmation_modal.js,sha256=glK-x4oxSAHqiabqXmNFE3FRtzMbpg7TgZiKcPle9_o,1745
|
|
65
65
|
django_smartbase_admin/static/sb_admin/dist/main.js,sha256=KE89F9ooogNznFS2CmMQmYRgcI_wCHLV3mROX2AuCXo,376482
|
|
66
66
|
django_smartbase_admin/static/sb_admin/dist/main.js.LICENSE.txt,sha256=Z8-1IrzhOFV3eE_WGR7SRfbzN9GRXsvfiU7_E_BkX-k,5600
|
|
67
|
-
django_smartbase_admin/static/sb_admin/dist/main_style.css,sha256=
|
|
67
|
+
django_smartbase_admin/static/sb_admin/dist/main_style.css,sha256=vxveIgHSkp04cuW4sOJU5oHHWA045zH8J8DCecsowN8,152808
|
|
68
68
|
django_smartbase_admin/static/sb_admin/dist/main_style.js,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
69
|
-
django_smartbase_admin/static/sb_admin/dist/table.js,sha256=
|
|
69
|
+
django_smartbase_admin/static/sb_admin/dist/table.js,sha256=7Tp0N_NO2oTonXPlXG3DUkgHe_VFoXDVwKkJ8PloLYo,589814
|
|
70
70
|
django_smartbase_admin/static/sb_admin/dist/table.js.LICENSE.txt,sha256=WOKSfEow5EUe0a78P0kcxdWcrQlqn2n6H8idNZqHVDk,462
|
|
71
71
|
django_smartbase_admin/static/sb_admin/dist/translations.js,sha256=5PRY3zmbnQ9pH-FtNHmsZ5xmYLPOQiO_hR3CBxHIAIo,567
|
|
72
72
|
django_smartbase_admin/static/sb_admin/favicon/android-chrome-192x192.png,sha256=Og0qXawivKxQWmPPU6dkkGjO0txd-yDXXfemTWXCBDY,18172
|
|
@@ -141,6 +141,8 @@ django_smartbase_admin/static/sb_admin/images/flags/cu.png,sha256=mfmMFh1Nw8zk-k
|
|
|
141
141
|
django_smartbase_admin/static/sb_admin/images/flags/cv.png,sha256=gbF2i66ivSSvgxDMsSOripwikQtXleZaD5RygqdoY9c,594
|
|
142
142
|
django_smartbase_admin/static/sb_admin/images/flags/cy.png,sha256=bXbN8m3XjeGL40GIQGJsvJLuR7voAYJmeUESQv1nTvU,688
|
|
143
143
|
django_smartbase_admin/static/sb_admin/images/flags/cz.png,sha256=fMtlUo9dBJKWCXMI7RTjqgH8KJC6Ao5A2zaFr4DpAt4,463
|
|
144
|
+
django_smartbase_admin/static/sb_admin/images/flags/de-at.png,sha256=zeO7t2I6I7nWcz5jQAOfJv2Fp6lVMKiBjTh8liblIgc,308
|
|
145
|
+
django_smartbase_admin/static/sb_admin/images/flags/de-ch.png,sha256=L6YI0crifNuug_ZOjSmxebgK2J7qD9aAUOByS5qNSxg,313
|
|
144
146
|
django_smartbase_admin/static/sb_admin/images/flags/de.png,sha256=NI6UkFhoBxNTlJLhZCO4GUN04Ba9cmgBACzHkOtxOjY,278
|
|
145
147
|
django_smartbase_admin/static/sb_admin/images/flags/dj.png,sha256=d5Xxw1aRX3YwZYl2g_xUcEgs5DZHfizvJVIOUkSaMbc,583
|
|
146
148
|
django_smartbase_admin/static/sb_admin/images/flags/dk.png,sha256=xdX-2480u6lDt4HWqp02inu0C-8WO4YbuOU9JHuUeF4,327
|
|
@@ -479,7 +481,7 @@ django_smartbase_admin/static/sb_admin/src/css/_colors.css,sha256=jaEB18XoAeY_I6
|
|
|
479
481
|
django_smartbase_admin/static/sb_admin/src/css/_components.css,sha256=yqkCga3LcUHZuf--bgNa-ANfuSrz1INbyaKHt96SRxM,11246
|
|
480
482
|
django_smartbase_admin/static/sb_admin/src/css/_datepicker.css,sha256=5Ja6uuXLr60oHNp6PDQPec2pznqG9syzYVPSKgCAC2s,14025
|
|
481
483
|
django_smartbase_admin/static/sb_admin/src/css/_filer.css,sha256=9VaLI4A4HuxNqyJv3q9o61Ils2hf7JymgjSp_C-fTnY,1629
|
|
482
|
-
django_smartbase_admin/static/sb_admin/src/css/_inlines.css,sha256=
|
|
484
|
+
django_smartbase_admin/static/sb_admin/src/css/_inlines.css,sha256=8M0aFUpE5TfSI8ZTcOX0h78Ge894Dr3S71I82WUBPFo,3994
|
|
483
485
|
django_smartbase_admin/static/sb_admin/src/css/_nouislider.css,sha256=y3wmnyoPFkIKiwn9tzRTWGlIFhopgt4OulOf7__e-3k,5587
|
|
484
486
|
django_smartbase_admin/static/sb_admin/src/css/_tabulator.css,sha256=zwUoDtTS6XScAfKhFGgcH5DsVHhTa7hU87dxh2tIeDo,18374
|
|
485
487
|
django_smartbase_admin/static/sb_admin/src/css/_tailwind_base.css,sha256=GGQZxH5G0WiJdP5tHUaI1yNPF5AROgwekzUmtSLJoEw,58
|
|
@@ -516,7 +518,7 @@ django_smartbase_admin/static/sb_admin/src/js/table_modules/filter_module.js,sha
|
|
|
516
518
|
django_smartbase_admin/static/sb_admin/src/js/table_modules/full_text_search_module.js,sha256=9ZfnZXvaTOphhRU0B7H0rsghUBWzTOSyVK1FZIj6bIE,573
|
|
517
519
|
django_smartbase_admin/static/sb_admin/src/js/table_modules/header_tabs_module.js,sha256=zT2CYKfMSd0903ASUzIbT8HwTkF6id3w4j5IJpwONp8,2888
|
|
518
520
|
django_smartbase_admin/static/sb_admin/src/js/table_modules/movable_columns_module.js,sha256=X0FQykK63v8vcE3-qZhkWZA2ajp8QTCLFv0PvkeLVvY,7694
|
|
519
|
-
django_smartbase_admin/static/sb_admin/src/js/table_modules/selection_module.js,sha256=
|
|
521
|
+
django_smartbase_admin/static/sb_admin/src/js/table_modules/selection_module.js,sha256=yOGCkB4fN5Cz8ntxMBgeuVnrv1TTMLf1j8YQTMgpc-Y,6560
|
|
520
522
|
django_smartbase_admin/static/sb_admin/src/js/table_modules/table_params_module.js,sha256=67OJV8l_i7f2Ptm_G76Ri7AWyEfZ8B5BjiztLP819DM,11250
|
|
521
523
|
django_smartbase_admin/static/sb_admin/src/js/table_modules/views_module.js,sha256=ZdirU9jt_aE_vkVXxMytZ3AaC0q6r57ECijdhV6j3-M,3393
|
|
522
524
|
django_smartbase_admin/static/sb_admin/src/js/translations.js,sha256=GEizlr_D5yDj00i7jKENkWfDr6gZcg4RQ1Nek22WP4g,954
|
|
@@ -590,8 +592,8 @@ django_smartbase_admin/templates/sb_admin/includes/notifications.html,sha256=wEE
|
|
|
590
592
|
django_smartbase_admin/templates/sb_admin/includes/readonly_boolean_field.html,sha256=sCU7DKBeWVD7ILcOAd20APS3gTBLBwXJpDjzTETwp5M,412
|
|
591
593
|
django_smartbase_admin/templates/sb_admin/includes/readonly_field.html,sha256=uGysgcSJJRIwG-AW9Vtfysulz4HOKUNH9Wx0f8sZkuE,291
|
|
592
594
|
django_smartbase_admin/templates/sb_admin/includes/table_inline_delete_button.html,sha256=pgXePfkFu71wquoKGs-q-TQbuUuLqNEh5-MOINPp39o,1109
|
|
593
|
-
django_smartbase_admin/templates/sb_admin/inlines/stacked_inline.html,sha256=
|
|
594
|
-
django_smartbase_admin/templates/sb_admin/inlines/table_inline.html,sha256=
|
|
595
|
+
django_smartbase_admin/templates/sb_admin/inlines/stacked_inline.html,sha256=L9PkC38cdgvB7YGeJhECmOalZQYtYMBdKUxNCUKScZM,7703
|
|
596
|
+
django_smartbase_admin/templates/sb_admin/inlines/table_inline.html,sha256=pC3HnSEPQW2RXeLdkFEKsaFG7XxlHnfO2vcszxcOXnI,14926
|
|
595
597
|
django_smartbase_admin/templates/sb_admin/inlines/table_inline_paginated.html,sha256=2I59KWM_7yvchNjlIWHaHklrklnNsJBwaLlp9mZUYfQ,3046
|
|
596
598
|
django_smartbase_admin/templates/sb_admin/integrations/cms/page_list.html,sha256=juoU5UaqPozIgRX5EJyWpm2-mb1hqM2pfBoePZ1Vs-I,18190
|
|
597
599
|
django_smartbase_admin/templates/sb_admin/integrations/cms/translations_status_row.html,sha256=Ppm6oEmNZkZC_XV5QNFbgccsBumB6LVy1e0Vk8dPMCM,308
|
|
@@ -657,7 +659,7 @@ django_smartbase_admin/templates/sb_admin/widgets/toggle.html,sha256=z7E1re0gy2A
|
|
|
657
659
|
django_smartbase_admin/templates/sb_admin/widgets/url.html,sha256=piw2218tiWPfOwncIvSGAW14Gc5FIzkL_YllirK4yTs,160
|
|
658
660
|
django_smartbase_admin/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
659
661
|
django_smartbase_admin/templatetags/base.py,sha256=XF1wUQxUjULXfdlV-PeHvITfbw65LTHjlDzRikJa_F4,1520
|
|
660
|
-
django_smartbase_admin/templatetags/sb_admin_tags.py,sha256=
|
|
662
|
+
django_smartbase_admin/templatetags/sb_admin_tags.py,sha256=rvJufjS0mhGj6Wl6P-iEoWGVx_dt96BZuZo1XzUZmIU,8210
|
|
661
663
|
django_smartbase_admin/urls.py,sha256=Bjdewssljt0LIefjixBem9JN0kkghPvmrIETj3GdXbY,17
|
|
662
664
|
django_smartbase_admin/utils.py,sha256=0SUIA-n6XiPeDH7PvdekV1xIKwUjvyPxaBPEKsZKXyM,2775
|
|
663
665
|
django_smartbase_admin/views/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -665,7 +667,7 @@ django_smartbase_admin/views/dashboard_view.py,sha256=vtz5emYTQ5WDFeLA8HrcmjSOVd
|
|
|
665
667
|
django_smartbase_admin/views/global_filter_view.py,sha256=eYo1moJGyi7jc2cPDA5ZBiEgA7Hmc-DxbQvbqUpDkg8,1127
|
|
666
668
|
django_smartbase_admin/views/media_view.py,sha256=5BLWXuzynF7nM34t-mf2BQSRN5ojY8HxpLIqt7Jiq9g,292
|
|
667
669
|
django_smartbase_admin/views/translations_view.py,sha256=A02q1t13akLKd2Pg_ej4tVi5qPUKYxB2LqsBbYXM0l8,20267
|
|
668
|
-
django_smartbase_admin-0.2.
|
|
669
|
-
django_smartbase_admin-0.2.
|
|
670
|
-
django_smartbase_admin-0.2.
|
|
671
|
-
django_smartbase_admin-0.2.
|
|
670
|
+
django_smartbase_admin-0.2.87.dist-info/LICENSE.md,sha256=okRGMBOYvyhprt2eTpX_QXqpzC0MODF-U7zX-4fKPjQ,1078
|
|
671
|
+
django_smartbase_admin-0.2.87.dist-info/METADATA,sha256=AlctIIGhOLlHn9g0g5kcTItMc7hqX_X9ur2XE0Z_A8E,996
|
|
672
|
+
django_smartbase_admin-0.2.87.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
|
673
|
+
django_smartbase_admin-0.2.87.dist-info/RECORD,,
|
{django_smartbase_admin-0.2.85.dist-info → django_smartbase_admin-0.2.87.dist-info}/LICENSE.md
RENAMED
|
File without changes
|
|
File without changes
|