accrete 0.0.50__py3-none-any.whl → 0.0.52__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.
- accrete/contrib/ui/__init__.py +1 -0
- accrete/contrib/ui/context.py +3 -2
- accrete/contrib/ui/elements.py +9 -0
- accrete/contrib/ui/static/css/accrete.css +1127 -3002
- accrete/contrib/ui/static/css/accrete.css.map +1 -1
- accrete/contrib/ui/static/css/accrete.scss +76 -14
- accrete/contrib/ui/static/js/filter.js +0 -13
- accrete/contrib/ui/templates/ui/layout.html +81 -9
- accrete/contrib/ui/templates/ui/partials/filter.html +71 -20
- accrete/contrib/ui/templates/ui/partials/header.html +1 -1
- accrete/contrib/ui/templates/ui/partials/pagination_list.html +2 -2
- accrete/contrib/ui/templates/ui/table.html +0 -1
- accrete/contrib/ui/templatetags/accrete_ui.py +1 -4
- {accrete-0.0.50.dist-info → accrete-0.0.52.dist-info}/METADATA +1 -1
- {accrete-0.0.50.dist-info → accrete-0.0.52.dist-info}/RECORD +17 -17
- {accrete-0.0.50.dist-info → accrete-0.0.52.dist-info}/WHEEL +1 -1
- {accrete-0.0.50.dist-info → accrete-0.0.52.dist-info}/licenses/LICENSE +0 -0
@@ -465,19 +465,6 @@ function changeOperator(event) {
|
|
465
465
|
fetchQuery();
|
466
466
|
}
|
467
467
|
|
468
|
-
function toggleFieldSelection() {
|
469
|
-
const fieldPaths = document.getElementById('field-paths');
|
470
|
-
const input = document.getElementById('field-path-search-input')
|
471
|
-
const checkBoxes = document.getElementById('field-path-checkboxes');
|
472
|
-
this.event.target.classList.toggle('is-active');
|
473
|
-
fieldPaths.classList.toggle('is-hidden');
|
474
|
-
input.value = ''
|
475
|
-
checkBoxes.querySelectorAll(':scope * input').forEach(
|
476
|
-
(el) => {
|
477
|
-
el.parentElement.classList.remove('is-hidden')
|
478
|
-
});
|
479
|
-
}
|
480
|
-
|
481
468
|
function filterFieldPaths() {
|
482
469
|
const value = document.getElementById('field-path-search-input').value.toString().toLowerCase();
|
483
470
|
const checkBoxes = document.getElementById('field-path-checkboxes');
|
@@ -88,21 +88,67 @@
|
|
88
88
|
|
89
89
|
<div id="main" class="is-flex is-flex-direction-row" style="padding-top: var(--bulma-navbar-height); height: 100svh">
|
90
90
|
<div class="side-panel is-hidden-touch is-hidden-desktop-only is-hidden-widescreen-only p-0">
|
91
|
-
<nav class="
|
91
|
+
<nav class="pb-5" style="height: 100%; overflow-y: auto; position: sticky; top: 0">
|
92
92
|
{% if list_page.paginator %}
|
93
|
-
<div class="panel-
|
93
|
+
<div class="side-panel-action">
|
94
94
|
{% include 'ui/partials/pagination_list.html' %}
|
95
95
|
</div>
|
96
96
|
{% endif %}
|
97
97
|
{% if detail_page %}
|
98
|
-
<div class="panel-
|
98
|
+
<div class="side-panel-action">
|
99
99
|
{% include 'ui/partials/pagination_detail.html' %}
|
100
100
|
</div>
|
101
101
|
{% endif %}
|
102
|
+
|
102
103
|
<div id="panel-actions">
|
103
104
|
{% for action in actions %}
|
104
|
-
|
105
|
-
|
105
|
+
{% if action.actions %}
|
106
|
+
<div class="dropdown" style="width: 100%">
|
107
|
+
<div class="dropdown-trigger" style="width: 100%">
|
108
|
+
<div class="side-panel-action" style="width: 292px">
|
109
|
+
<button class="button side-panel-action-content" aria-haspopup="true" aria-controls="dropdown-menu4" style="width: 100%">
|
110
|
+
<span>{{ action.name }}</span>
|
111
|
+
<span class="icon is-small">
|
112
|
+
<i class="fas fa-angle-down" aria-hidden="true"></i>
|
113
|
+
</span>
|
114
|
+
</button>
|
115
|
+
</div>
|
116
|
+
</div>
|
117
|
+
<div class="dropdown-menu side-panel-action" role="menu">
|
118
|
+
<div class="dropdown-content">
|
119
|
+
{% for group_action in action.actions %}
|
120
|
+
{% if group_action.submit %}
|
121
|
+
<div class="dropdown-item">
|
122
|
+
<button class="button is-fullwidth {{ group_action.class_list|join:' ' }}"
|
123
|
+
type="submit" form={{ group_action.form_id }} value="{{ group_action.name }}"
|
124
|
+
{{ group_action.attrs_str }}
|
125
|
+
>
|
126
|
+
<div class="side-panel-action-content level"><span>{{ group_action.name }}</span>
|
127
|
+
{% if group_action.icon %}<i class="{{ group_action.icon.value }}"></i>{% endif %}
|
128
|
+
</div>
|
129
|
+
</button>
|
130
|
+
</div>
|
131
|
+
{% else %}
|
132
|
+
<div class="dropdown-item">
|
133
|
+
<a class="button is-fullwidth {{ group_action.class_list|join:' ' }}"
|
134
|
+
{% if group_action.url %}
|
135
|
+
{{ group_action.method.value }}="{{ group_action.url }}"
|
136
|
+
{% endif %}
|
137
|
+
{{ group_action.attrs_str }}
|
138
|
+
>
|
139
|
+
<div class="side-panel-action-content level">
|
140
|
+
<span>{{ group_action.name }}</span>
|
141
|
+
{% if group_action.icon %}<i class="{{ group_action.icon.value }}"></i>{% endif %}
|
142
|
+
</div>
|
143
|
+
</a>
|
144
|
+
</div>
|
145
|
+
{% endif %}
|
146
|
+
{% endfor %}
|
147
|
+
</div>
|
148
|
+
</div>
|
149
|
+
</div>
|
150
|
+
{% elif action.submit %}
|
151
|
+
<div class="side-panel-action">
|
106
152
|
<button class="button is-fullwidth {{ action.class_list|join:' ' }}"
|
107
153
|
type="submit" form={{ action.form_id }} value="{{ action.name }}"
|
108
154
|
{{ action.attrs_str }}
|
@@ -111,7 +157,9 @@
|
|
111
157
|
{% if action.icon %}<i class="{{ action.icon.value }}"></i>{% endif %}
|
112
158
|
</div>
|
113
159
|
</button>
|
114
|
-
|
160
|
+
</div>
|
161
|
+
{% else %}
|
162
|
+
<div class="side-panel-action">
|
115
163
|
<a class="button is-fullwidth {{ action.class_list|join:' ' }}"
|
116
164
|
{% if action.url %}
|
117
165
|
{{ action.method.value }}="{{ action.url }}"
|
@@ -120,13 +168,18 @@
|
|
120
168
|
>
|
121
169
|
<div class="side-panel-action-content level">
|
122
170
|
<span>{{ action.name }}</span>
|
123
|
-
{% if action.icon %}
|
171
|
+
{% if action.icon %}
|
172
|
+
<span class="icon is-small">
|
173
|
+
<i class="{{ action.icon.value }}" aria-hidden="true"></i>
|
174
|
+
</span>
|
175
|
+
{% endif %}
|
124
176
|
</div>
|
125
177
|
</a>
|
126
|
-
|
127
|
-
|
178
|
+
</div>
|
179
|
+
{% endif %}
|
128
180
|
{% endfor %}
|
129
181
|
</div>
|
182
|
+
|
130
183
|
{% block filter %}
|
131
184
|
{% if filter %}
|
132
185
|
<div id="filter-panel" class="mt-2">
|
@@ -192,4 +245,23 @@
|
|
192
245
|
|
193
246
|
<div id="form-modal" class="modal"></div>
|
194
247
|
{% endblock %}
|
248
|
+
<script>
|
249
|
+
document.querySelectorAll('.dropdown').forEach(dropdown => {
|
250
|
+
dropdown.addEventListener('click', setDropDown);
|
251
|
+
})
|
252
|
+
|
253
|
+
function setDropDown(event) {
|
254
|
+
console.log(event.target, this)
|
255
|
+
const dropdownMenu = this.querySelector('.dropdown-menu');
|
256
|
+
document.querySelectorAll('.dropdown').forEach(dropdown => {
|
257
|
+
if (dropdown !== this) {
|
258
|
+
dropdown.classList.remove('is-active');
|
259
|
+
}
|
260
|
+
else if (dropdownMenu.contains(event.target)) {}
|
261
|
+
else if (dropdown === this) {
|
262
|
+
dropdown.classList.toggle('is-active');
|
263
|
+
}
|
264
|
+
})
|
265
|
+
}
|
266
|
+
</script>
|
195
267
|
</body>
|
@@ -7,7 +7,7 @@
|
|
7
7
|
<script src="{% static "js/filter.js" %}" defer type="text/javascript"></script>
|
8
8
|
|
9
9
|
<div id="query-apply" hx-get="" hx-trigger="click" hx-replace-url="true"
|
10
|
-
hx-select-oob="#content,#list-pagination,#
|
10
|
+
hx-select-oob="#content,#list-pagination,#query-apply">
|
11
11
|
</div>
|
12
12
|
|
13
13
|
<div id="query-tags" class="is-flex-direction-column is-flex-grow-1 is-multiline mb-1"
|
@@ -51,30 +51,81 @@
|
|
51
51
|
</div>
|
52
52
|
|
53
53
|
|
54
|
-
<div id="query-params-dropdown" class="box mt-0 mx-0
|
54
|
+
<div id="query-params-dropdown" class="box mt-0 mx-0 is-hidden is-fullwidth" tabindex="-1" onclick="toggleParams()">
|
55
55
|
{{ filter.to_html.params }}
|
56
56
|
</div>
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
57
|
+
|
58
|
+
<div id="list-customization" style="display: flex; flex-direction: row; flex-wrap: nowrap">
|
59
|
+
{% if field_selection %}
|
60
|
+
<div id="field-selection" class="dropdown mt-1 is-flex-grow-1" style="min-width: 50%">
|
61
|
+
<div class="dropdown-trigger" style="width: 100%;">
|
62
|
+
<button class="button side-panel-action-content" aria-haspopup="true"
|
63
|
+
style="border-top-right-radius: 0; border-bottom-right-radius: 0;"
|
64
|
+
>
|
65
|
+
<span>{% translate 'Fields' %}</span>
|
66
|
+
<span class="icon is-small">
|
67
|
+
<i class="fas fa-angle-down" aria-hidden="true"></i>
|
68
|
+
</span>
|
69
69
|
</button>
|
70
|
-
</
|
70
|
+
</div>
|
71
|
+
<div id="field-paths" class="dropdown-menu pt-0" role="menu" style="width: 292px; border-top-left-radius: 0; border-top-right-radius: 0;">
|
72
|
+
<div class="dropdown-content">
|
73
|
+
<div class="dropdown-item">
|
74
|
+
<div class="field has-addons mr-1">
|
75
|
+
<p class="control is-expanded">
|
76
|
+
<input id="field-path-search-input" class="input is-small" type="text" aria-label="Query Input" oninput="filterFieldPaths()" style="height: 100%">
|
77
|
+
</p>
|
78
|
+
<p class="control">
|
79
|
+
<button id="field-path-search-reset" class="button is-small has-icon" onclick="resetFieldPaths()" style="box-shadow: none">
|
80
|
+
<span class="icon"><i class="fas fa-arrow-rotate-left"></i></span>
|
81
|
+
</button>
|
82
|
+
</p>
|
83
|
+
</div>
|
84
|
+
</div>
|
85
|
+
<div class="dropdown-item">
|
86
|
+
<div id="field-path-checkboxes" onchange="changeFieldSelection()">
|
87
|
+
{{ filter.to_html.field_paths }}
|
88
|
+
</div>
|
89
|
+
</div>
|
90
|
+
<div id="field-path-apply" hx-get="" hx-trigger="click" hx-replace-url="true"
|
91
|
+
hx-select-oob="#content,#field-path-apply,#list-pagination">
|
92
|
+
</div>
|
93
|
+
</div>
|
94
|
+
</div>
|
71
95
|
</div>
|
72
|
-
|
73
|
-
|
96
|
+
{% endif %}
|
97
|
+
|
98
|
+
<div id="order-selection" class="dropdown mt-1 is-flex-grow-1" style="min-width: 50%">
|
99
|
+
<div class="dropdown-trigger" style="width: 100%;">
|
100
|
+
<button class="button side-panel-action-content" aria-haspopup="true"
|
101
|
+
style="{% if field_selection %} border-top-left-radius: 0; border-bottom-left-radius: 0; {% endif %}">
|
102
|
+
<span>{% translate 'Order' %}</span>
|
103
|
+
<span class="icon is-small">
|
104
|
+
<i class="fas fa-angle-down" aria-hidden="true"></i>
|
105
|
+
</span>
|
106
|
+
</button>
|
74
107
|
</div>
|
75
|
-
<div id="
|
76
|
-
|
108
|
+
<div id="order-paths" class="dropdown-menu pt-0" role="menu" style="width: 292px; border-top-left-radius: 0; border-top-right-radius: 0;
|
109
|
+
{% if field_selection %} left: -146px;{% endif %}"
|
110
|
+
>
|
111
|
+
<div class="dropdown-content">
|
112
|
+
<div class="dropdown-item">
|
113
|
+
<div class="field has-addons mr-1">
|
114
|
+
<p class="control is-expanded">
|
115
|
+
<input class="input is-small" type="text" aria-label="Query Input" style="height: 100%">
|
116
|
+
</p>
|
117
|
+
<p class="control">
|
118
|
+
<button id="order-selection-reset" class="button is-small has-icon" style="box-shadow: none;">
|
119
|
+
<span class="icon"><i class="fas fa-arrow-rotate-left"></i></span>
|
120
|
+
</button>
|
121
|
+
</p>
|
122
|
+
</div>
|
123
|
+
</div>
|
124
|
+
<div id="order-path-apply" hx-get="" hx-trigger="click" hx-replace-url="true"
|
125
|
+
hx-select-oob="#content,#order-path-apply,#list-pagination">
|
126
|
+
</div>
|
127
|
+
</div>
|
77
128
|
</div>
|
78
129
|
</div>
|
79
|
-
|
130
|
+
</div>
|
80
131
|
</div>
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{% load i18n %}
|
2
2
|
|
3
|
-
<div id="header" class="pt-
|
3
|
+
<div id="header" class="pt-3">
|
4
4
|
<div class="level level-is-shrinkable is-flex mb-2 pl-3 {% if detail_page %}is-mobile {% endif %}" style="align-items: start">
|
5
5
|
<div class="level-left">
|
6
6
|
<div class="level-item has-text-weight-bold">
|
@@ -4,7 +4,7 @@
|
|
4
4
|
<button id="list-pagination-prev-button" class="button"
|
5
5
|
hx-get="{{ pagination_param_str }}&page={% if list_page.has_previous %}{{ list_page.previous_page_number }}{% else %}{{ list_page.paginator.num_pages }}{% endif %}"
|
6
6
|
hx-replace-url="true"
|
7
|
-
hx-select-oob="#content,#list-pagination
|
7
|
+
hx-select-oob="#content,#list-pagination"
|
8
8
|
>
|
9
9
|
<
|
10
10
|
</button>
|
@@ -20,7 +20,7 @@
|
|
20
20
|
<button id="list-pagination-next-button" class="button"
|
21
21
|
hx-get="{{ pagination_param_str }}&page={% if list_page.has_next %}{{ list_page.next_page_number }}{% else %}1{% endif %}"
|
22
22
|
hx-replace-url="true"
|
23
|
-
hx-select-oob="#content,#list-pagination
|
23
|
+
hx-select-oob="#content,#list-pagination"
|
24
24
|
>
|
25
25
|
>
|
26
26
|
</button>
|
@@ -14,9 +14,7 @@ register = template.Library()
|
|
14
14
|
|
15
15
|
@register.simple_tag(name='combine_templates')
|
16
16
|
def combine_templates(template_name, request=None):
|
17
|
-
html =
|
18
|
-
if html:
|
19
|
-
return mark_safe(html)
|
17
|
+
html = ''
|
20
18
|
for app in settings.INSTALLED_APPS:
|
21
19
|
try:
|
22
20
|
html += render_to_string(
|
@@ -24,7 +22,6 @@ def combine_templates(template_name, request=None):
|
|
24
22
|
)
|
25
23
|
except template.TemplateDoesNotExist:
|
26
24
|
continue
|
27
|
-
cache.set(template_name, html, 1)
|
28
25
|
return mark_safe(html)
|
29
26
|
|
30
27
|
|
@@ -32,11 +32,11 @@ accrete/contrib/system_mail/tests.py,sha256=mrbGGRNg5jwbTJtWWa7zSKdDyeB4vmgZCRc2
|
|
32
32
|
accrete/contrib/system_mail/views.py,sha256=xc1IQHrsij7j33TUbo-_oewy3vs03pw_etpBWaMYJl0,63
|
33
33
|
accrete/contrib/system_mail/migrations/0001_initial.py,sha256=6cwkkRXGjXvwXoMjjgmWmcPyXSTlUbhW1vMiHObk9MQ,1074
|
34
34
|
accrete/contrib/system_mail/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
35
|
-
accrete/contrib/ui/__init__.py,sha256=
|
35
|
+
accrete/contrib/ui/__init__.py,sha256=gnU3YLT6kHCxrUm1c-Bsvh8-hpdLGbGYxdNGcNGsXlg,477
|
36
36
|
accrete/contrib/ui/admin.py,sha256=suMo4x8I3JBxAFBVIdE-5qnqZ6JAZV0FESABHOSc-vg,63
|
37
37
|
accrete/contrib/ui/apps.py,sha256=E0ao2ox6PQ3ldfeR17FXJUUJuGiWjm2DPCxHbPXGzls,152
|
38
|
-
accrete/contrib/ui/context.py,sha256=
|
39
|
-
accrete/contrib/ui/elements.py,sha256=
|
38
|
+
accrete/contrib/ui/context.py,sha256=m_QcDK9R3bMC-wB5JTaEBYVmfLGqofw9fVN7Cp5GcX8,6843
|
39
|
+
accrete/contrib/ui/elements.py,sha256=mxhNC-29YqkPei4bQB6fHkBuOc-mv5WWN7JiUJ_ys0o,1856
|
40
40
|
accrete/contrib/ui/filter.py,sha256=PnBDVwl2iV3xBg5cphYiib5dUx-0wKHGtwS-FaBDbkA,12188
|
41
41
|
accrete/contrib/ui/tests.py,sha256=mrbGGRNg5jwbTJtWWa7zSKdDyeB4vmgZCRc2nk6VY-g,60
|
42
42
|
accrete/contrib/ui/urls.py,sha256=TUBlz_CGs9InTZoxM78GSnucA73I8knoh_obt12RUHM,186
|
@@ -135,14 +135,14 @@ accrete/contrib/ui/static/bulma/versions/bulma-no-dark-mode.scss,sha256=w6Q80mCV
|
|
135
135
|
accrete/contrib/ui/static/bulma/versions/bulma-no-helpers-prefixed.scss,sha256=6HCUc4hxyaj4_rHqUnoy7aMuFZECHDYh5jvp-1CEtfE,344
|
136
136
|
accrete/contrib/ui/static/bulma/versions/bulma-no-helpers.scss,sha256=5dzAXSgReWUO8GXLbYTpOclPPD0xqvvBiCCX_GOR_5U,313
|
137
137
|
accrete/contrib/ui/static/bulma/versions/bulma-prefixed.scss,sha256=Yj7oEO00jy_G_L32y6rwzp2P5p2YtQ2Pvq4aZhvBSE8,138
|
138
|
-
accrete/contrib/ui/static/css/accrete.css,sha256=
|
139
|
-
accrete/contrib/ui/static/css/accrete.css.map,sha256=
|
140
|
-
accrete/contrib/ui/static/css/accrete.scss,sha256=
|
138
|
+
accrete/contrib/ui/static/css/accrete.css,sha256=jMVDvIQbcQz8ykeeaGMZ8f52IRauKHGHEdGwfTG10Ac,604413
|
139
|
+
accrete/contrib/ui/static/css/accrete.css.map,sha256=dURUcJVhkkoQU1Una2Tv4AHu9Qy1mI-_YxS4vNp4mRg,94276
|
140
|
+
accrete/contrib/ui/static/css/accrete.scss,sha256=UCKoSnWUXAdd9QIXwFejZvxo-h9WXqLS6Fwvy1F-l3M,10034
|
141
141
|
accrete/contrib/ui/static/css/fa.css,sha256=wiz7ZSCn_btzhjKDQBms9Hx4sSeUYsDrTLg7roPstac,102641
|
142
142
|
accrete/contrib/ui/static/css/icons.css,sha256=5550KHsaayeEtRaUdf0h7esQhyec-_5ZfecZ_sOC6v0,6334
|
143
143
|
accrete/contrib/ui/static/icons/Logo.svg,sha256=hGZuxrAa-LRpFavFiF8Lnc7X9OQcqmb6Xl_dxx-27hM,1861
|
144
144
|
accrete/contrib/ui/static/icons/accrete.svg,sha256=CWHJKIgk3hxL7xIaFSz2j1cK-eF1TroCbjcF58bgOIs,1024
|
145
|
-
accrete/contrib/ui/static/js/filter.js,sha256=-
|
145
|
+
accrete/contrib/ui/static/js/filter.js,sha256=-8yGsI4juzA9ZkUS4Qrto4s5Wq4teRLyZfJm5dySm7o,24613
|
146
146
|
accrete/contrib/ui/static/js/htmx.min.js,sha256=s73PXHQYl6U2SLEgf_8EaaDWGQFCm6H26I-Y69hOZp4,47755
|
147
147
|
accrete/contrib/ui/static/js/list.js,sha256=OX_81ifRmawE-1QBU5Qpq_E6sHiiNwIPleETAn9EOJw,4280
|
148
148
|
accrete/contrib/ui/static/webfonts/fa-brands-400.ttf,sha256=VlbVlrxZcWWkIYL2eyufF9KuR6nj7xsEK5pylzlzBwU,207972
|
@@ -162,22 +162,22 @@ accrete/contrib/ui/templates/django/forms/widgets/text.html,sha256=MSmLlQc7PsPoD
|
|
162
162
|
accrete/contrib/ui/templates/django/forms/widgets/textarea.html,sha256=c9BTedqb3IkXLyVYd0p9pR8DFnsXCNGoxVBWZTk_Fic,278
|
163
163
|
accrete/contrib/ui/templates/ui/detail.html,sha256=23daOnFjl1rx32zJJ7MtZtRur1Z4-KeHNrbpNPJyliU,5181
|
164
164
|
accrete/contrib/ui/templates/ui/form.html,sha256=R5digymvYfefbT4QmwzMzWm41GS-JA3CZU6zDTDWr9k,915
|
165
|
-
accrete/contrib/ui/templates/ui/layout.html,sha256=
|
165
|
+
accrete/contrib/ui/templates/ui/layout.html,sha256=0Fzm_XvaZtFPw5KaJHd8943_MTO6RaXGlUStqES5uqc,15098
|
166
166
|
accrete/contrib/ui/templates/ui/list.html,sha256=oDv8I9xxsxuwoNywRqt0n0leuKocnvViFCC0OFFENDk,1695
|
167
|
-
accrete/contrib/ui/templates/ui/table.html,sha256=
|
168
|
-
accrete/contrib/ui/templates/ui/partials/filter.html,sha256=
|
167
|
+
accrete/contrib/ui/templates/ui/table.html,sha256=7Ewx5cKfwmNJ1cjLOgvi4AIHaXF8DLqT25_73-M8lMs,4198
|
168
|
+
accrete/contrib/ui/templates/ui/partials/filter.html,sha256=C9obJWyn8qrCs2Ler2MafRd8I0X7dmhHUWAzuoivpMs,6974
|
169
169
|
accrete/contrib/ui/templates/ui/partials/form_errors.html,sha256=1_TQvTdiejsn-43YSyp2YfnP52P-MFYb-HGY0DLm4oA,991
|
170
170
|
accrete/contrib/ui/templates/ui/partials/form_modal.html,sha256=TQVkLypx8y1inZbvUYKtSNHrDXJM1xvYl8IsDDwQwkE,1093
|
171
|
-
accrete/contrib/ui/templates/ui/partials/header.html,sha256=
|
171
|
+
accrete/contrib/ui/templates/ui/partials/header.html,sha256=StUcfBurAmnsO7O2sIdG_Bwsl8w0LEdfW4zI_OdW4Gk,4291
|
172
172
|
accrete/contrib/ui/templates/ui/partials/onchange_form.html,sha256=K5twTGqRUW1iM2dGtdWntjsJvJVo5EIzKxX2HK-H1yw,160
|
173
173
|
accrete/contrib/ui/templates/ui/partials/pagination_detail.html,sha256=58nA3X7Il0FAD4VcYyr7tTGWRiVf_FN1TkImmKEpKHU,1014
|
174
|
-
accrete/contrib/ui/templates/ui/partials/pagination_list.html,sha256
|
174
|
+
accrete/contrib/ui/templates/ui/partials/pagination_list.html,sha256=Eyx1lsk9UIFFYPICL7RuYeUFaKVlmvWVXnFCGR-II7k,1324
|
175
175
|
accrete/contrib/ui/templates/ui/partials/table_field.html,sha256=4oQw0na9UgHP8lo8KttyWBuDhCEeaZ8Vt9jJYJdZ5Gs,641
|
176
176
|
accrete/contrib/ui/templates/ui/partials/table_field_float.html,sha256=GH_jFdpk8wEJXv4QfO6c3URYrZGGLeuSyWwWl2cWxwQ,45
|
177
177
|
accrete/contrib/ui/templates/ui/partials/table_field_monetary.html,sha256=Wtod9vel2dD4vG8lUVLbtls4aU_2EG3p0E1QRRUSH10,166
|
178
178
|
accrete/contrib/ui/templates/ui/partials/table_field_string.html,sha256=GH_jFdpk8wEJXv4QfO6c3URYrZGGLeuSyWwWl2cWxwQ,45
|
179
179
|
accrete/contrib/ui/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
180
|
-
accrete/contrib/ui/templatetags/accrete_ui.py,sha256=
|
180
|
+
accrete/contrib/ui/templatetags/accrete_ui.py,sha256=rmkiXZKqQu4AEgLcQUlS7QkrtnUBjl1DMwnmrdHrvwE,2425
|
181
181
|
accrete/contrib/user/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
182
182
|
accrete/contrib/user/admin.py,sha256=YS4iApli7XUaIl9GsEJxys2j8sepX0by88omYHjff-E,85
|
183
183
|
accrete/contrib/user/apps.py,sha256=oHDrAiHf-G57mZLyxqGJzRY2DbPprGFD-QgyVJG_ruI,156
|
@@ -218,7 +218,7 @@ accrete/utils/dates.py,sha256=apM6kt6JhGrKgoT0jfav1W-8AUVTxNc9xt3fJQ2n0JI,1492
|
|
218
218
|
accrete/utils/forms.py,sha256=FHR9IP76dkULCtX4H68xbQG5uvkBQZnDEXSlHyz34iU,606
|
219
219
|
accrete/utils/http.py,sha256=dR4p-Q8xoTlrjfx0sN--vkY4ZGtYUsqqquAfPNxsXx8,3249
|
220
220
|
accrete/utils/models.py,sha256=EEhv7-sQVtQD24PEb3XcDUAh3VVhVFoMMLyFrDjGEaI,706
|
221
|
-
accrete-0.0.
|
222
|
-
accrete-0.0.
|
223
|
-
accrete-0.0.
|
224
|
-
accrete-0.0.
|
221
|
+
accrete-0.0.52.dist-info/METADATA,sha256=kI8AQmPsqmYhF9q-05Z4nZ9WAzSzm5Hcx2w2LU65984,4892
|
222
|
+
accrete-0.0.52.dist-info/WHEEL,sha256=as-1oFTWSeWBgyzh0O_qF439xqBe6AbBgt4MfYe5zwY,87
|
223
|
+
accrete-0.0.52.dist-info/licenses/LICENSE,sha256=_7laeMIHnsd3Y2vJEXDYXq_PEXxIcjgJsGt8UIKTRWc,1057
|
224
|
+
accrete-0.0.52.dist-info/RECORD,,
|
File without changes
|