django-smartbase-admin 1.0.19__py3-none-any.whl → 1.0.22__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/widgets.py +25 -14
- django_smartbase_admin/engine/dashboard.py +22 -20
- django_smartbase_admin/migrations/0006_alter_sbadminuserconfiguration_color_scheme.py +18 -0
- django_smartbase_admin/models.py +3 -14
- django_smartbase_admin/static/sb_admin/dist/calendar_style.css +1 -1
- django_smartbase_admin/static/sb_admin/dist/main.js +1 -1
- django_smartbase_admin/static/sb_admin/dist/main_style.css +1 -1
- django_smartbase_admin/static/sb_admin/src/css/_components.css +9 -0
- django_smartbase_admin/static/sb_admin/src/css/calendar.css +33 -1
- django_smartbase_admin/static/sb_admin/src/js/main.js +24 -19
- django_smartbase_admin/templates/sb_admin/actions/dashboard.html +1 -1
- django_smartbase_admin/templates/sb_admin/dashboard/calendar_widget.html +36 -2
- django_smartbase_admin/templates/sb_admin/dashboard/chart_widget.html +1 -1
- django_smartbase_admin/templates/sb_admin/dashboard/list_widget.html +6 -0
- django_smartbase_admin/templates/sb_admin/dashboard/widget_base.html +1 -1
- django_smartbase_admin/templates/sb_admin/filter_widgets/partials/clear.html +10 -5
- django_smartbase_admin/templates/sb_admin/navigation.html +5 -3
- {django_smartbase_admin-1.0.19.dist-info → django_smartbase_admin-1.0.22.dist-info}/METADATA +1 -1
- {django_smartbase_admin-1.0.19.dist-info → django_smartbase_admin-1.0.22.dist-info}/RECORD +21 -20
- {django_smartbase_admin-1.0.19.dist-info → django_smartbase_admin-1.0.22.dist-info}/LICENSE.md +0 -0
- {django_smartbase_admin-1.0.19.dist-info → django_smartbase_admin-1.0.22.dist-info}/WHEEL +0 -0
|
@@ -2,7 +2,8 @@
|
|
|
2
2
|
--fc-small-font-size: .75rem;
|
|
3
3
|
--fc-border-color: var(--color-dark-200);
|
|
4
4
|
--fc-today-bg-color: var(--color-primary-50);
|
|
5
|
-
--fc-neutral-bg-color: var(--color-bg
|
|
5
|
+
--fc-neutral-bg-color: var(--color-bg);
|
|
6
|
+
--fc-page-bg-color: var(--color-bg-elevated);
|
|
6
7
|
}
|
|
7
8
|
|
|
8
9
|
.fc-theme-standard {
|
|
@@ -67,6 +68,13 @@
|
|
|
67
68
|
.fc-daygrid-day-number {
|
|
68
69
|
@apply bg-primary rounded-full text-light;
|
|
69
70
|
}
|
|
71
|
+
&.fc-day-other {
|
|
72
|
+
.fc-daygrid-day-top {
|
|
73
|
+
.fc-daygrid-day-number {
|
|
74
|
+
@apply text-light;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
}
|
|
70
78
|
}
|
|
71
79
|
.fc-daygrid-event {
|
|
72
80
|
@apply !m-0 flex gap-4;
|
|
@@ -79,6 +87,30 @@
|
|
|
79
87
|
.fc-event-title {
|
|
80
88
|
@apply font-normal text-dark-900 text-ellipsis leading-16;
|
|
81
89
|
}
|
|
90
|
+
&.event-positive {
|
|
91
|
+
@apply border-success-200 bg-success-50;
|
|
92
|
+
.fc-daygrid-event-dot {
|
|
93
|
+
@apply border-success;
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
&.event-warning {
|
|
97
|
+
@apply border-warning-200 bg-warning-50;
|
|
98
|
+
.fc-daygrid-event-dot {
|
|
99
|
+
@apply border-warning;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
&.event-negative {
|
|
103
|
+
@apply border-negative-200 bg-negative-50;
|
|
104
|
+
.fc-daygrid-event-dot {
|
|
105
|
+
@apply border-negative;
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
&.event-notice {
|
|
109
|
+
@apply border-notice-200 bg-notice-50;
|
|
110
|
+
.fc-daygrid-event-dot {
|
|
111
|
+
@apply border-notice;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
82
114
|
}
|
|
83
115
|
.fc-daygrid-event-dot {
|
|
84
116
|
box-sizing: border-box;
|
|
@@ -48,6 +48,7 @@ class Main {
|
|
|
48
48
|
document.addEventListener('formset:added', (e) => {
|
|
49
49
|
this.initDropdowns(e.target)
|
|
50
50
|
this.initFileInputs(e.target)
|
|
51
|
+
this.switchCKEditorTheme(e.target)
|
|
51
52
|
if (e.target !== e.target.parentNode.firstChild) {
|
|
52
53
|
e.target.parentNode.insertBefore(e.target, e.target.parentNode.firstChild)
|
|
53
54
|
}
|
|
@@ -84,7 +85,7 @@ class Main {
|
|
|
84
85
|
if(!shouldProcessAfterSwap(detail)) {
|
|
85
86
|
return
|
|
86
87
|
}
|
|
87
|
-
this.switchCKEditorTheme(
|
|
88
|
+
this.switchCKEditorTheme(detail.target)
|
|
88
89
|
})
|
|
89
90
|
}
|
|
90
91
|
|
|
@@ -105,22 +106,16 @@ class Main {
|
|
|
105
106
|
this.handleLocationHashFromTabs()
|
|
106
107
|
}
|
|
107
108
|
|
|
108
|
-
isDarkMode(
|
|
109
|
+
isDarkMode() {
|
|
110
|
+
const colorScheme = document.documentElement.dataset.theme
|
|
109
111
|
let isDark = colorScheme === 'dark'
|
|
110
112
|
if(!colorScheme || colorScheme === 'auto') {
|
|
111
113
|
isDark = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches
|
|
112
114
|
}
|
|
113
|
-
if(isDark) {
|
|
114
|
-
document.body.classList.add('dark')
|
|
115
|
-
}
|
|
116
|
-
else {
|
|
117
|
-
document.body.classList.remove('dark')
|
|
118
|
-
}
|
|
119
115
|
return isDark
|
|
120
116
|
}
|
|
121
117
|
|
|
122
118
|
handleColorSchemeChange() {
|
|
123
|
-
const isDarkMode = this.isDarkMode(document.documentElement.dataset.theme)
|
|
124
119
|
const picker = document.querySelector('.js-color-scheme-picker')
|
|
125
120
|
if(!picker) {
|
|
126
121
|
return
|
|
@@ -128,13 +123,22 @@ class Main {
|
|
|
128
123
|
picker.addEventListener('change', (e)=>{
|
|
129
124
|
if(e.target.value) {
|
|
130
125
|
document.documentElement.setAttribute('data-theme', e.target.value)
|
|
131
|
-
|
|
132
|
-
this.switchCKEditorTheme(
|
|
126
|
+
this.switchBodyColorSchemeClass()
|
|
127
|
+
this.switchCKEditorTheme()
|
|
133
128
|
return
|
|
134
129
|
}
|
|
135
130
|
document.documentElement.removeAttribute('data-theme')
|
|
136
131
|
})
|
|
137
|
-
this.
|
|
132
|
+
this.switchBodyColorSchemeClass()
|
|
133
|
+
this.switchCKEditorTheme()
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
switchBodyColorSchemeClass() {
|
|
137
|
+
if(this.isDarkMode()) {
|
|
138
|
+
document.body.classList.add('dark')
|
|
139
|
+
return
|
|
140
|
+
}
|
|
141
|
+
document.body.classList.remove('dark')
|
|
138
142
|
}
|
|
139
143
|
|
|
140
144
|
initInlines(target) {
|
|
@@ -354,8 +358,10 @@ class Main {
|
|
|
354
358
|
}
|
|
355
359
|
target = target || document
|
|
356
360
|
target.querySelectorAll('textarea[data-type="ckeditortype"]').forEach((textarea) => {
|
|
357
|
-
if( force ||
|
|
358
|
-
|
|
361
|
+
if( force || textarea.getAttribute("data-processed") == "0") {
|
|
362
|
+
if(textarea.id.indexOf("__prefix__") == -1) {
|
|
363
|
+
this.reinitCKEditor(textarea, config)
|
|
364
|
+
}
|
|
359
365
|
}
|
|
360
366
|
})
|
|
361
367
|
}
|
|
@@ -373,16 +379,15 @@ class Main {
|
|
|
373
379
|
window.CKEDITOR.replace(id, new_config)
|
|
374
380
|
}
|
|
375
381
|
|
|
376
|
-
switchCKEditorTheme(
|
|
382
|
+
switchCKEditorTheme(target) {
|
|
377
383
|
if(!window.CKEDITOR) {
|
|
378
384
|
return
|
|
379
385
|
}
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
this.initCKEditor(document, {'contentsCss': '/static/sb_admin/css/ckeditor/ckeditor_content_dark.css', uiColor: '#000000'}, true)
|
|
386
|
+
if(this.isDarkMode()) {
|
|
387
|
+
this.initCKEditor(target, {'contentsCss': '/static/sb_admin/css/ckeditor/ckeditor_content_dark.css', uiColor: '#000000'}, true)
|
|
383
388
|
return
|
|
384
389
|
}
|
|
385
|
-
this.initCKEditor(
|
|
390
|
+
this.initCKEditor(target, {'contentsCss':window.CKEDITOR.config.contentsCss}, true)
|
|
386
391
|
}
|
|
387
392
|
|
|
388
393
|
clearFilter(inputId) {
|
|
@@ -4,7 +4,32 @@
|
|
|
4
4
|
{% block filters %}{% endblock %}
|
|
5
5
|
|
|
6
6
|
{% block content_inner %}
|
|
7
|
-
<div class="card p-16 pb-0">
|
|
7
|
+
<div id="{{ widget_id }}" class="card p-16 pb-0 col-span-12">
|
|
8
|
+
<div class="p-8 flex items-center justify-between">
|
|
9
|
+
<div class="flex flex-col">
|
|
10
|
+
<div class="text-18 text-dark-900 font-semibold">
|
|
11
|
+
{% trans 'Calendar' %}
|
|
12
|
+
</div>
|
|
13
|
+
<div class="text-14">
|
|
14
|
+
<span id="{{ widget_id }}-date-from"></span>
|
|
15
|
+
-
|
|
16
|
+
<span id="{{ widget_id }}-date-to"></span>
|
|
17
|
+
</div>
|
|
18
|
+
</div>
|
|
19
|
+
|
|
20
|
+
<div class="flex gap-16 items-center">
|
|
21
|
+
{% include 'sb_admin/components/filters.html' with filters=settings all_filters_visible=True %}
|
|
22
|
+
<div class="btn-group">
|
|
23
|
+
<button class="btn p-0 w-40" onclick="window.SBAdminCalendar['{{ widget_id }}'].calendar.prev();">
|
|
24
|
+
<svg><use href="#Left-small"></use></svg>
|
|
25
|
+
</button>
|
|
26
|
+
<div class="btn pointer-events-none" id="{{ widget_id }}-selected-month" style="width: 150px;"></div>
|
|
27
|
+
<button class="btn p-0 w-40" onclick="window.SBAdminCalendar['{{ widget_id }}'].calendar.next();">
|
|
28
|
+
<svg><use href="#Right-small"></use></svg>
|
|
29
|
+
</button>
|
|
30
|
+
</div>
|
|
31
|
+
</div>
|
|
32
|
+
</div>
|
|
8
33
|
<div class="mt-16 -mx-16">
|
|
9
34
|
<script type="text/javascript" src="{% static 'sb_admin/js/fullcalendar.min.js' %}"></script>
|
|
10
35
|
<link rel="stylesheet" href="{% static 'sb_admin/dist/calendar_style.css' %}">
|
|
@@ -12,6 +37,10 @@
|
|
|
12
37
|
|
|
13
38
|
<script>
|
|
14
39
|
document.addEventListener('DOMContentLoaded', function() {
|
|
40
|
+
const selectedMonth = document.getElementById('{{ widget_id }}-selected-month');
|
|
41
|
+
const dateFrom = document.getElementById('{{ widget_id }}-date-from');
|
|
42
|
+
const dateTo = document.getElementById('{{ widget_id }}-date-to');
|
|
43
|
+
|
|
15
44
|
window.SBAdminCalendar = window.SBAdminCalendar || {};
|
|
16
45
|
window.SBAdminCalendar["{{ widget_id }}"] = new window.SBAdminCalendarClass({
|
|
17
46
|
"widgetId": "{{ widget_id }}",
|
|
@@ -22,9 +51,14 @@
|
|
|
22
51
|
},
|
|
23
52
|
dayMaxEvents: 3,
|
|
24
53
|
height: 'auto',
|
|
25
|
-
locale: '
|
|
54
|
+
locale: '{{request.LANGUAGE_CODE}}',
|
|
26
55
|
headerToolbar: false,
|
|
27
56
|
fixedWeekCount: false,
|
|
57
|
+
datesSet: function(info) {
|
|
58
|
+
selectedMonth.innerText = info.view.title;
|
|
59
|
+
dateFrom.innerText = info.view.currentStart.toLocaleDateString('{{request.LANGUAGE_CODE}}', {day: 'numeric', month: 'long', year: 'numeric'});
|
|
60
|
+
dateTo.innerText = new Date(info.view.currentStart.getFullYear(), info.view.currentStart.getMonth() + 1, 0).toLocaleDateString('{{request.LANGUAGE_CODE}}', {day: 'numeric', month: 'long', year: 'numeric'});
|
|
61
|
+
}
|
|
28
62
|
}
|
|
29
63
|
});
|
|
30
64
|
});
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
{% load sb_admin_tags static %}
|
|
3
3
|
|
|
4
4
|
{% block content_inner %}
|
|
5
|
-
<div class="card
|
|
5
|
+
<div id="{{ widget_id }}" class="card p-16 col-span-12">
|
|
6
6
|
<div class="mt-16">
|
|
7
7
|
<script type="text/javascript" src="{% static 'sb_admin/dist/chart.js' %}"></script>
|
|
8
8
|
<div class="flex flex-wrap -m-8 mb-16">
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
</form>
|
|
4
4
|
|
|
5
5
|
{% block filters %}
|
|
6
|
-
<div class="flex max-sm:flex-wrap max-xs:
|
|
6
|
+
<div class="dashboard-filter flex max-sm:flex-wrap max-xs:pt-16 gap-y-8 justify-between col-span-12">
|
|
7
7
|
<div class="min-w-0 sm:-mx-16 -my-12">
|
|
8
8
|
{% include 'sb_admin/components/filters.html' with filters=settings all_filters_visible=True default_button=True %}
|
|
9
9
|
</div>
|
|
@@ -8,9 +8,14 @@
|
|
|
8
8
|
{% trans 'Remove' %}
|
|
9
9
|
</button>
|
|
10
10
|
{% endif %}
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
11
|
+
<button type="button"
|
|
12
|
+
class="text-primary ml-auto"
|
|
13
|
+
{% if view_id %}
|
|
14
|
+
onclick="window.SBAdminTable['{{ view_id }}'].moduleInstances.filterModule.clearFilter('{{ filter_field.filter_field }}')"
|
|
15
|
+
{% else %}
|
|
16
|
+
onclick="window.SBAdmin.clearFilter('{{ filter_field.filter_widget.input_id }}')"
|
|
17
|
+
{% endif %}
|
|
18
|
+
>
|
|
19
|
+
{% trans 'Clear' %}
|
|
20
|
+
</button>
|
|
16
21
|
</div>
|
|
@@ -8,7 +8,9 @@
|
|
|
8
8
|
<use xlink:href="#Hamburger-button"></use>
|
|
9
9
|
</svg>
|
|
10
10
|
</div>
|
|
11
|
-
<img src="{
|
|
11
|
+
<img src="{% static 'sb_admin/images/logo.svg' %}" class="h-32 w-auto dark:hidden"
|
|
12
|
+
alt="SBAdmin" width="106" height="16">
|
|
13
|
+
<img src="{% static 'sb_admin/images/logo_light.svg' %}" class="h-32 w-auto hidden dark:block"
|
|
12
14
|
alt="SBAdmin" width="106" height="16">
|
|
13
15
|
<div class="w-32 h-32 rounded-full leading-none flex-center flex-shrink-0 bg-dark-300 ml-auto">
|
|
14
16
|
{{ username_data.initials }}
|
|
@@ -17,9 +19,9 @@
|
|
|
17
19
|
<nav class="w-260 xl:fixed top-0 bottom-0 left-0 max-lg:sidebar border-r border-dark-200 overflow-hidden flex flex-col relative bg-dark-50 z-1"
|
|
18
20
|
id="main-navigation">
|
|
19
21
|
<header class="px-24 py-32 hidden xl:!block">
|
|
20
|
-
<img src="{
|
|
22
|
+
<img src="{% static 'sb_admin/images/logo.svg' %}" class="h-32 w-auto dark:hidden"
|
|
21
23
|
alt="SBAdmin" width="133" height="20">
|
|
22
|
-
<img src="{
|
|
24
|
+
<img src="{% static 'sb_admin/images/logo_light.svg' %}" class="h-32 w-auto hidden dark:block"
|
|
23
25
|
alt="SBAdmin" width="133" height="20">
|
|
24
26
|
</header>
|
|
25
27
|
<header class="px-16 py-8 flex items-center xl:hidden border-b border-dark-200 bg-light min-h-56">
|
|
@@ -5,7 +5,7 @@ django_smartbase_admin/actions/advanced_filters.py,sha256=Vm8b6TAwNehR8INjolFG7p
|
|
|
5
5
|
django_smartbase_admin/admin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
6
|
django_smartbase_admin/admin/admin_base.py,sha256=lU73GWjWvrPTsIXgmLaR88ie_K71J4NsU7qUqSzDrqg,47274
|
|
7
7
|
django_smartbase_admin/admin/site.py,sha256=sJiVX2ljUgNN6MnlLfsTyJs7Dl52iC2rtLwkg962ydM,6841
|
|
8
|
-
django_smartbase_admin/admin/widgets.py,sha256=
|
|
8
|
+
django_smartbase_admin/admin/widgets.py,sha256=7w2kYK-1EAUb7ZCOi10EqAZPZYaCWUhCcji-062OdPo,26240
|
|
9
9
|
django_smartbase_admin/apps.py,sha256=heZq5O2GHlkJdhUCHbRR7Nmm0irSxnL9NMqY43_O7V4,599
|
|
10
10
|
django_smartbase_admin/compilemessages.py,sha256=-_FEFQlOvE4L8UzSuUxSxZQjgGlwL9IZtmg59fW_kIQ,342
|
|
11
11
|
django_smartbase_admin/engine/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -15,7 +15,7 @@ django_smartbase_admin/engine/admin_entrypoint_view.py,sha256=jfMfcYPfdre2abHfC4
|
|
|
15
15
|
django_smartbase_admin/engine/admin_view.py,sha256=9wGffahDR3IYmhL9ZbX8uitwGdXdw5DIL5GnWBawmJM,4238
|
|
16
16
|
django_smartbase_admin/engine/configuration.py,sha256=kkM0P0lcKUjfHVxSupwaKPiVz5FfHzOKsYU_QM08wv0,8541
|
|
17
17
|
django_smartbase_admin/engine/const.py,sha256=BP5I2UcCtV0bIlk_YUuVFHrDHRM9-gbCL0sJUX-q4Wo,2600
|
|
18
|
-
django_smartbase_admin/engine/dashboard.py,sha256=
|
|
18
|
+
django_smartbase_admin/engine/dashboard.py,sha256=yXi0oUTybqeo2_o2G3skp27W79u_SKjqcaXGKXR4pus,24488
|
|
19
19
|
django_smartbase_admin/engine/fake_inline.py,sha256=tGLX3yHANYBsVPcDk6yQqn8RN-JGdaV-RdHcxh9-61w,6190
|
|
20
20
|
django_smartbase_admin/engine/field.py,sha256=AkcEs9hYqIJHy9cLgchWfC1wpWTRzFNm7byEIf0DuLU,10858
|
|
21
21
|
django_smartbase_admin/engine/field_formatter.py,sha256=Ma4GoO2DMgCtx-zy_hgyW_095GWwflMdn8uN4GUatgw,2087
|
|
@@ -34,8 +34,9 @@ django_smartbase_admin/migrations/0002_auto_20230402_2316.py,sha256=RjqhI-N39Ikr
|
|
|
34
34
|
django_smartbase_admin/migrations/0003_auto_20230402_2328.py,sha256=-4fknf4126mzojXL_l_D_NJlqwakSQIWzoqegLiYUVM,552
|
|
35
35
|
django_smartbase_admin/migrations/0004_alter_sbadminlistviewconfiguration_action_and_more.py,sha256=j3cz6sz5ahxkIuHYlSU0opCt6iLolrnda6u9wRDbUsE,648
|
|
36
36
|
django_smartbase_admin/migrations/0005_sbadminuserconfiguration.py,sha256=BlDerrirl5kc0EcbT_bkNObLgSZacDqfwqaU39FTPSs,1391
|
|
37
|
+
django_smartbase_admin/migrations/0006_alter_sbadminuserconfiguration_color_scheme.py,sha256=ldF63Bj6iDCk3Ieh5DyoqQWDg6VZWmoiIHF5m5WKS9M,539
|
|
37
38
|
django_smartbase_admin/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
38
|
-
django_smartbase_admin/models.py,sha256=
|
|
39
|
+
django_smartbase_admin/models.py,sha256=kSNyKpoxnqcCZKnbESp6iKQJ29lSFMDiq05GsT6-Z1s,1367
|
|
39
40
|
django_smartbase_admin/monkeypatch/admin_readonly_field_monkeypatch.py,sha256=fxcDCcI4DTbdDm4RYGtKUwEsq714i2XUHuw6fa84OgI,4037
|
|
40
41
|
django_smartbase_admin/monkeypatch/fake_inline_monkeypatch.py,sha256=Utga1IT38_DbjNc1LslvkomnK80Gbv8uv_c-dQup9QU,852
|
|
41
42
|
django_smartbase_admin/querysets.py,sha256=fKFvWp8fWKbRQQxM8NlHtDmAITyEZJQuCva-dse-diI,459
|
|
@@ -62,14 +63,14 @@ django_smartbase_admin/static/sb_admin/css/codemirror/dracula.min.css,sha256=uo0
|
|
|
62
63
|
django_smartbase_admin/static/sb_admin/css/coloris/coloris.min.css,sha256=teADOBNAUAYg3wegm5gqu_4ahI-cp-_E87PZH4m52D0,8506
|
|
63
64
|
django_smartbase_admin/static/sb_admin/css/querybuilder/query-builder.default.min.css,sha256=NpM2HsztsnXTnoq_6D2H2qENmS-xEbXVvInpg87fmGo,3335
|
|
64
65
|
django_smartbase_admin/static/sb_admin/dist/calendar.js,sha256=qEBRkEVRBfep78KRgMhB0WvVoDhX1PL0DQLNADQ_ejI,2627
|
|
65
|
-
django_smartbase_admin/static/sb_admin/dist/calendar_style.css,sha256=
|
|
66
|
+
django_smartbase_admin/static/sb_admin/dist/calendar_style.css,sha256=eU1xsZgzUNxfET1B2GlYqZsKa8wKYHouxICYlBn0q9U,3671
|
|
66
67
|
django_smartbase_admin/static/sb_admin/dist/calendar_style.js,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
67
68
|
django_smartbase_admin/static/sb_admin/dist/chart.js,sha256=nBru0P3RvzaNeQch6qkuL1Wi_c9ICz94HXLXmyYTMW8,205022
|
|
68
69
|
django_smartbase_admin/static/sb_admin/dist/chart.js.LICENSE.txt,sha256=m7M__mzLlrKDz-hky_AC848p_HzYWhziwCLIpXMsj4I,257
|
|
69
70
|
django_smartbase_admin/static/sb_admin/dist/confirmation_modal.js,sha256=glK-x4oxSAHqiabqXmNFE3FRtzMbpg7TgZiKcPle9_o,1745
|
|
70
|
-
django_smartbase_admin/static/sb_admin/dist/main.js,sha256=
|
|
71
|
+
django_smartbase_admin/static/sb_admin/dist/main.js,sha256=4IJGPvsx_VFDVfMQvYPLE0rYApzqRJYUElvpbb5sF6o,382935
|
|
71
72
|
django_smartbase_admin/static/sb_admin/dist/main.js.LICENSE.txt,sha256=Z8-1IrzhOFV3eE_WGR7SRfbzN9GRXsvfiU7_E_BkX-k,5600
|
|
72
|
-
django_smartbase_admin/static/sb_admin/dist/main_style.css,sha256=
|
|
73
|
+
django_smartbase_admin/static/sb_admin/dist/main_style.css,sha256=Z1TXgv-meax_fdZoNqRZqCjaDal89hik4lqFSa_KUtY,178358
|
|
73
74
|
django_smartbase_admin/static/sb_admin/dist/main_style.js,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
74
75
|
django_smartbase_admin/static/sb_admin/dist/table.js,sha256=ellAKCmVs6r3AjERQ5UZ3NUCLT6uY5KQmGMM-ciyI7I,592340
|
|
75
76
|
django_smartbase_admin/static/sb_admin/dist/table.js.LICENSE.txt,sha256=WOKSfEow5EUe0a78P0kcxdWcrQlqn2n6H8idNZqHVDk,462
|
|
@@ -511,7 +512,7 @@ django_smartbase_admin/static/sb_admin/sprites/sb_admin/Zoom-out.svg,sha256=nx0h
|
|
|
511
512
|
django_smartbase_admin/static/sb_admin/src/css/_base.css,sha256=LHE7Gv9XegYFNjq3Qn1djngPcuNA6tMp7lW8BdcE-8Q,1896
|
|
512
513
|
django_smartbase_admin/static/sb_admin/src/css/_choices.css,sha256=HgS0F_NQw_FS94nTAaSrxnCZkSH2ODWylKUH8LrtZxo,1889
|
|
513
514
|
django_smartbase_admin/static/sb_admin/src/css/_colors.css,sha256=Ue8ZHaTRvpkJJ_jVrMhmWN25XHt8nC_zZk157vy9qoc,7090
|
|
514
|
-
django_smartbase_admin/static/sb_admin/src/css/_components.css,sha256=
|
|
515
|
+
django_smartbase_admin/static/sb_admin/src/css/_components.css,sha256=2_P-jsu3UeGZcAnPAqdHTqLdKse2_TpRTgzAg0ejrkw,12019
|
|
515
516
|
django_smartbase_admin/static/sb_admin/src/css/_datepicker.css,sha256=mguFue8FtTmPz1m-TcPXZo3LkaV_Nr2k9dvpXYiwI_Y,14127
|
|
516
517
|
django_smartbase_admin/static/sb_admin/src/css/_filer.css,sha256=9VaLI4A4HuxNqyJv3q9o61Ils2hf7JymgjSp_C-fTnY,1629
|
|
517
518
|
django_smartbase_admin/static/sb_admin/src/css/_inlines.css,sha256=VP4ggI5Kx8MQHuINrW5UyDHNlU7_ggpyfnsTCAJDkPs,4701
|
|
@@ -519,7 +520,7 @@ django_smartbase_admin/static/sb_admin/src/css/_nouislider.css,sha256=y3wmnyoPFk
|
|
|
519
520
|
django_smartbase_admin/static/sb_admin/src/css/_tabulator.css,sha256=3lYZN-pXDVPXDsILW2LDw1wBCdOtcXD78UMfwOQmoNE,18484
|
|
520
521
|
django_smartbase_admin/static/sb_admin/src/css/_tailwind_base.css,sha256=GGQZxH5G0WiJdP5tHUaI1yNPF5AROgwekzUmtSLJoEw,58
|
|
521
522
|
django_smartbase_admin/static/sb_admin/src/css/_utilities.css,sha256=CwCzAMaTUSP8Wr-6zdusKPuMtS970u0Qb1RQ23TG_LM,901
|
|
522
|
-
django_smartbase_admin/static/sb_admin/src/css/calendar.css,sha256=
|
|
523
|
+
django_smartbase_admin/static/sb_admin/src/css/calendar.css,sha256=HC9vjkwnJqwAdtf7eH4AJ295m6Qa3bbcCFObhe949O0,3645
|
|
523
524
|
django_smartbase_admin/static/sb_admin/src/css/components/_button.css,sha256=5A6l9oeqMyyMQQbfjZVLV419konNHzGb83FOf-bTG9w,5494
|
|
524
525
|
django_smartbase_admin/static/sb_admin/src/css/components/_dropdown.css,sha256=ONfGX6cyBUjeXIMaCXWS3cGE1iaCKp4rGeENQZVPW3E,2299
|
|
525
526
|
django_smartbase_admin/static/sb_admin/src/css/components/_input.css,sha256=O1odbSQb-qtWo8HJ0UVzYpGJgYx2DD7Kat21lvXK9Ks,11210
|
|
@@ -538,7 +539,7 @@ django_smartbase_admin/static/sb_admin/src/js/code.js,sha256=Q1jKpTsUZhxhaGDRrqH
|
|
|
538
539
|
django_smartbase_admin/static/sb_admin/src/js/confirmation_modal.js,sha256=9xycy0sYJfT0SxeDucbOmvg9gHSrBo3KngZjCAHkVMM,3610
|
|
539
540
|
django_smartbase_admin/static/sb_admin/src/js/datepicker.js,sha256=Nnc28kngTOnb8d2q6NOFGismUVp6l-sTVeBu3M1DgJY,6704
|
|
540
541
|
django_smartbase_admin/static/sb_admin/src/js/datepicker_plugins.js,sha256=DVIyCJpxn8Gx1mx3QHxbRN4nlpJRlilKix6BK_zcUVc,12382
|
|
541
|
-
django_smartbase_admin/static/sb_admin/src/js/main.js,sha256=
|
|
542
|
+
django_smartbase_admin/static/sb_admin/src/js/main.js,sha256=GfEk6isVJkSttX9dnQZkSZyZzdFjAWsFqFBS_dmh3ck,15749
|
|
542
543
|
django_smartbase_admin/static/sb_admin/src/js/multiselect.js,sha256=GuWjIpdkfvXi-oBNdK3gImjrzef4550MKMy71iYrywk,4066
|
|
543
544
|
django_smartbase_admin/static/sb_admin/src/js/range.js,sha256=k_1EIK0R-mrg3ScopUm2UDuYeaCg_VLTjtdJoN-8MXc,1794
|
|
544
545
|
django_smartbase_admin/static/sb_admin/src/js/sb_ajax_params_tabulator_modifier.js,sha256=vJsAfRlXYeUH-hXLyVukim-UBRUHhv2J9UZHKAALOKo,650
|
|
@@ -562,7 +563,7 @@ django_smartbase_admin/static/sb_admin/src/js/tree_widget.js,sha256=rL0znvFm85f7
|
|
|
562
563
|
django_smartbase_admin/static/sb_admin/src/js/utils.js,sha256=8hBr_dr1F_SQKLvuh9Z4t3q3KnSP2cmth7-x0Ih2T4w,5500
|
|
563
564
|
django_smartbase_admin/templates/sb_admin/actions/change_form.html,sha256=g48e7ikJ6sUFc87F1sZW8SLv5rCY9j858BfO-xKeMfc,16664
|
|
564
565
|
django_smartbase_admin/templates/sb_admin/actions/change_password.html,sha256=LhciaKCvlywKMJ6gY9JbEaTkOXjNSFO-mAnWIZfk6sA,3200
|
|
565
|
-
django_smartbase_admin/templates/sb_admin/actions/dashboard.html,sha256=
|
|
566
|
+
django_smartbase_admin/templates/sb_admin/actions/dashboard.html,sha256=ur4OFSKJrB71Sl8O5fF0BsV86zLq1tyiadmrDUy9aJ0,297
|
|
566
567
|
django_smartbase_admin/templates/sb_admin/actions/delete_confirmation.html,sha256=4AeJLqGGPVBYXS9XQSNTnMvsT3I6QttyNLThE8gEZHE,3205
|
|
567
568
|
django_smartbase_admin/templates/sb_admin/actions/delete_selected_confirmation.html,sha256=hQl8C3j22LI6fVPAMqRd4d_kXNKzcCNJDuhOzEZKBGE,3308
|
|
568
569
|
django_smartbase_admin/templates/sb_admin/actions/list.html,sha256=SUXoRQtaqw6vpjry0bkzXTPa8KWQonXubcJlDH7-SKM,6905
|
|
@@ -597,11 +598,11 @@ django_smartbase_admin/templates/sb_admin/components/filters.html,sha256=TlcbJeQ
|
|
|
597
598
|
django_smartbase_admin/templates/sb_admin/components/filters_v2.html,sha256=sWJwakrXLP7SChZTOJl8AdObhQOlVbbdJaP-Q47JENY,7114
|
|
598
599
|
django_smartbase_admin/templates/sb_admin/components/inputs.html,sha256=h1rfHTk2y9PsmgVpH8zbbtZmZoNB18tp-KLZZ45ddOU,10938
|
|
599
600
|
django_smartbase_admin/templates/sb_admin/config/view.html,sha256=26X-VD2Y-l9yLrSavu1JxhrBOUSfB00bFFVC9q_sTL8,4177
|
|
600
|
-
django_smartbase_admin/templates/sb_admin/dashboard/calendar_widget.html,sha256=
|
|
601
|
+
django_smartbase_admin/templates/sb_admin/dashboard/calendar_widget.html,sha256=FzeLemXhjHdNj76Gwjesw17stBY2BZsKbG9-cr2lU-g,3672
|
|
601
602
|
django_smartbase_admin/templates/sb_admin/dashboard/chart_aggregate_sub_widget.html,sha256=Dw7ksbdQykoXzj3UcGdkfajoN-q98_xSJul9wIle67Y,900
|
|
602
|
-
django_smartbase_admin/templates/sb_admin/dashboard/chart_widget.html,sha256
|
|
603
|
-
django_smartbase_admin/templates/sb_admin/dashboard/list_widget.html,sha256=
|
|
604
|
-
django_smartbase_admin/templates/sb_admin/dashboard/widget_base.html,sha256=
|
|
603
|
+
django_smartbase_admin/templates/sb_admin/dashboard/chart_widget.html,sha256=-Ip0VHs5cNYcmpIyLDP4uvyR6q37UXNQs3OtQEmcHKE,1849
|
|
604
|
+
django_smartbase_admin/templates/sb_admin/dashboard/list_widget.html,sha256=ellD39SbRJGgoskRaaim2TGplmwUHEku8xZAzGGItKI,262
|
|
605
|
+
django_smartbase_admin/templates/sb_admin/dashboard/widget_base.html,sha256=peKIQO272Q9cpCrCkN6nnjA9umM_droX0aDbzgDtY0o,740
|
|
605
606
|
django_smartbase_admin/templates/sb_admin/filter_widgets/advanced_filters/autocomplete_field.html,sha256=YmiBxK1bTlJUkI2qOu9tNXVKACgxvsoigNRBkEbFMEM,1626
|
|
606
607
|
django_smartbase_admin/templates/sb_admin/filter_widgets/advanced_filters/boolean_field.html,sha256=PNh4r9lV8BJYeSdYzQX1IfLqIVWUCEER_qiXRecxopQ,251
|
|
607
608
|
django_smartbase_admin/templates/sb_admin/filter_widgets/advanced_filters/choice_field.html,sha256=y1r1pAZwR64ZFSt7cs5pasQrkaDn2QtFTqC2zyxn63s,316
|
|
@@ -617,7 +618,7 @@ django_smartbase_admin/templates/sb_admin/filter_widgets/choice_field.html,sha25
|
|
|
617
618
|
django_smartbase_admin/templates/sb_admin/filter_widgets/date_field.html,sha256=WR2fqKv8P2XG2xCpE0FXgKfl4gj3Gmlo3ZAOep1xYQY,1144
|
|
618
619
|
django_smartbase_admin/templates/sb_admin/filter_widgets/multiple_choice_field.html,sha256=q9bERN_gP793_fizMH-w2wOl7j_6PLz-jUJG1iXkGyw,2052
|
|
619
620
|
django_smartbase_admin/templates/sb_admin/filter_widgets/number_range_field.html,sha256=3d8yYpmvgQZUxCXw80lNpxeLCLTfIy8Xumg4X1nzJFc,1162
|
|
620
|
-
django_smartbase_admin/templates/sb_admin/filter_widgets/partials/clear.html,sha256=
|
|
621
|
+
django_smartbase_admin/templates/sb_admin/filter_widgets/partials/clear.html,sha256=FzgPxr2VA61Zn9wGjOkmKneKJPl_CdjsaqPOn485ud0,829
|
|
621
622
|
django_smartbase_admin/templates/sb_admin/filter_widgets/radio_choice_field.html,sha256=iWY1TqA0Wl7bHH7XtpPzD4PgtKmLtmzX3pnQIEwSXBs,1212
|
|
622
623
|
django_smartbase_admin/templates/sb_admin/filter_widgets/string_field.html,sha256=_GJsgYk4CqHMqFWQsIBdDhLnThb6rb1pF0stOpOB40o,548
|
|
623
624
|
django_smartbase_admin/templates/sb_admin/filter_widgets/tree_select_filter.html,sha256=6-jUnM9-UW4xKTilF8UgjT0zkafZh2xsR0M1N0obNj8,1243
|
|
@@ -643,7 +644,7 @@ django_smartbase_admin/templates/sb_admin/integrations/filer/filer_change_form.h
|
|
|
643
644
|
django_smartbase_admin/templates/sb_admin/integrations/filer/folder_list.html,sha256=FwPER3QByBeWikj8dojedu0BfrYIQpWOSleHxMRc7OE,20733
|
|
644
645
|
django_smartbase_admin/templates/sb_admin/integrations/filer/image_change_form.html,sha256=CESQuiGfbKdMEq9DRIXfOS-jpz8yr64TJ7R_cs6jZ9M,1909
|
|
645
646
|
django_smartbase_admin/templates/sb_admin/integrations/sorting/change_list.html,sha256=2TSTiKZ52Gpp_Jf5EHr4BEUxnxVXdEY9jEHrtn2f5Xc,15190
|
|
646
|
-
django_smartbase_admin/templates/sb_admin/navigation.html,sha256=
|
|
647
|
+
django_smartbase_admin/templates/sb_admin/navigation.html,sha256=PuxzpaX6ZpjtDqNKh1H74agotZRNWNmBeFe0e5Q7Un0,11127
|
|
647
648
|
django_smartbase_admin/templates/sb_admin/partials/messages/alert_base.html,sha256=F61XeaBMR7YL9wx0VDXdJ9uTlBMNGSMsXmk6IHZuuNk,825
|
|
648
649
|
django_smartbase_admin/templates/sb_admin/partials/messages/alert_close.html,sha256=-BhLje6G4Ey36hOseZ41WxjmdsMeCOza_2okBn0EWiM,121
|
|
649
650
|
django_smartbase_admin/templates/sb_admin/partials/messages/alert_error.html,sha256=m31_khnOxC1j1yrtRCk8L8NUg0KC_Vckx1FYHMiOZrQ,276
|
|
@@ -715,7 +716,7 @@ django_smartbase_admin/views/global_filter_view.py,sha256=eYo1moJGyi7jc2cPDA5ZBi
|
|
|
715
716
|
django_smartbase_admin/views/media_view.py,sha256=5BLWXuzynF7nM34t-mf2BQSRN5ojY8HxpLIqt7Jiq9g,292
|
|
716
717
|
django_smartbase_admin/views/translations_view.py,sha256=hktmkJIZ0EJxgnzjHLIoRDY0ckFa5wkbaoFZg32UWYw,20441
|
|
717
718
|
django_smartbase_admin/views/user_config_view.py,sha256=7GcC8iw_GRn23AWehltJpVmSMW3Cq6WFxSuXeYiFylg,1124
|
|
718
|
-
django_smartbase_admin-1.0.
|
|
719
|
-
django_smartbase_admin-1.0.
|
|
720
|
-
django_smartbase_admin-1.0.
|
|
721
|
-
django_smartbase_admin-1.0.
|
|
719
|
+
django_smartbase_admin-1.0.22.dist-info/LICENSE.md,sha256=okRGMBOYvyhprt2eTpX_QXqpzC0MODF-U7zX-4fKPjQ,1078
|
|
720
|
+
django_smartbase_admin-1.0.22.dist-info/METADATA,sha256=bRXtkqqRMYPwtZSyZqm997liG7BlVhsXEBWhp3NJZic,5375
|
|
721
|
+
django_smartbase_admin-1.0.22.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
|
722
|
+
django_smartbase_admin-1.0.22.dist-info/RECORD,,
|
{django_smartbase_admin-1.0.19.dist-info → django_smartbase_admin-1.0.22.dist-info}/LICENSE.md
RENAMED
|
File without changes
|
|
File without changes
|