accrete 0.0.21__py3-none-any.whl → 0.0.23__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/sequence/forms.py +2 -2
- accrete/contrib/sequence/queries.py +3 -4
- accrete/contrib/ui/__init__.py +10 -5
- accrete/contrib/ui/components.py +49 -0
- accrete/contrib/ui/context.py +284 -0
- accrete/contrib/ui/filter.py +16 -17
- accrete/contrib/ui/querystring.py +93 -0
- accrete/contrib/ui/static/css/accrete.css +225 -162
- accrete/contrib/ui/static/css/accrete.css.map +1 -1
- accrete/contrib/ui/static/css/accrete.scss +90 -21
- accrete/contrib/ui/static/js/filter.js +18 -11
- accrete/contrib/ui/templates/ui/detail.html +1 -3
- accrete/contrib/ui/templates/ui/layout.html +3 -3
- accrete/contrib/ui/templates/ui/list.html +3 -3
- accrete/contrib/ui/templates/ui/partials/filter.html +1 -0
- accrete/contrib/ui/templates/ui/partials/header.html +1 -1
- accrete/contrib/ui/templates/ui/partials/pagination_detail.html +2 -2
- accrete/contrib/ui/templates/ui/partials/pagination_list.html +5 -5
- accrete/contrib/ui/templates/ui/partials/table_field.html +15 -0
- accrete/contrib/ui/templates/ui/partials/table_field_float.html +1 -0
- accrete/contrib/ui/templates/ui/partials/table_field_monetary.html +4 -0
- accrete/contrib/ui/templates/ui/partials/table_field_string.html +1 -0
- accrete/contrib/ui/templates/ui/table.html +13 -4
- accrete/contrib/user/templates/user/user_detail.html +9 -9
- accrete/contrib/user/templates/user/user_form.html +2 -0
- accrete/contrib/user/views.py +2 -2
- accrete/queries.py +5 -1
- {accrete-0.0.21.dist-info → accrete-0.0.23.dist-info}/METADATA +1 -1
- {accrete-0.0.21.dist-info → accrete-0.0.23.dist-info}/RECORD +31 -25
- accrete/contrib/ui/helper.py +0 -432
- {accrete-0.0.21.dist-info → accrete-0.0.23.dist-info}/WHEEL +0 -0
- {accrete-0.0.21.dist-info → accrete-0.0.23.dist-info}/licenses/LICENSE +0 -0
@@ -9,14 +9,14 @@
|
|
9
9
|
{% endblock %}
|
10
10
|
|
11
11
|
{% block content %}
|
12
|
-
<table class="table is-fullwidth is-hoverable">
|
12
|
+
<table class="table hax-box is-fullwidth is-hoverable" hx-indicator=".htmx-indicator">
|
13
13
|
<thead style="position: sticky; top: 0; background: white; z-index: 10">
|
14
14
|
{% block table_header_row %}
|
15
15
|
<tr>
|
16
16
|
{% block table_header %}
|
17
17
|
<th>{{ obj_label }}</th>
|
18
18
|
{% for field in fields %}
|
19
|
-
<th style="text-align: {
|
19
|
+
<th style="text-align: {% firstof field.header_alignment.value field.alignment.value %}">{{ field.label }}</th>
|
20
20
|
{% endfor %}
|
21
21
|
{% if unselect_button %}
|
22
22
|
<th></th>
|
@@ -28,11 +28,19 @@
|
|
28
28
|
<tbody style="z-index: 9">
|
29
29
|
{% for obj in page %}
|
30
30
|
{% block table_data_row %}
|
31
|
-
<tr
|
31
|
+
<tr {% if forloop.last and page.has_next %}
|
32
|
+
hx-get="{{ querystring }}&page={{ page.next_page_number }}"
|
33
|
+
hx-trigger="intersect once"
|
34
|
+
hx-select="tbody > tr"
|
35
|
+
hx-select-oob="#list-pagination-end-index,#list-pagination-next-button"
|
36
|
+
hx-swap="afterend"
|
37
|
+
{% endif %}>
|
32
38
|
{% block table_data %}
|
39
|
+
<td class="responsive-heading has-text-weight-light">{{ obj_label }}:</td>
|
33
40
|
<td><a class="is-underlined" href="{{ obj.get_absolute_url }}{{ querystring }}&page={{ page.number }}">{{ obj }}</a></td>
|
34
41
|
{% for field in fields %}
|
35
|
-
<td
|
42
|
+
<td class="responsive-heading has-text-weight-light">{{ field.label }}:</td>
|
43
|
+
{% include 'ui/partials/table_field'|add:field.field_type.value|add:'.html' %}
|
36
44
|
{% endfor %}
|
37
45
|
{% if unselect_button %}
|
38
46
|
<td><button class="button is-small has-icon p-0 is-pulled-right" onclick="unselectSingleObject({{ obj.pk }})"><i class="icon-delete-filter"></i></button></td>
|
@@ -43,4 +51,5 @@
|
|
43
51
|
{% endfor %}
|
44
52
|
</tbody>
|
45
53
|
</table>
|
54
|
+
<progress class="htmx-indicator progress is-small is-primary" max="100">15%</progress>
|
46
55
|
{% endblock %}
|
@@ -4,38 +4,38 @@
|
|
4
4
|
{% block detail_content %}
|
5
5
|
<div class="columns">
|
6
6
|
<div class="column is-6">
|
7
|
-
<label class="label has-field">
|
7
|
+
<label class="label is-detail has-field">
|
8
8
|
{% translate 'Username' %}
|
9
9
|
<div class="field">
|
10
|
-
<p class="control is-expanded"
|
10
|
+
<p class="control is-expanded">{{ object.username|default_if_none:'' }}</p>
|
11
11
|
</div>
|
12
12
|
</label>
|
13
13
|
</div>
|
14
14
|
<div class="column is-6">
|
15
|
-
<label class="label has-field">
|
16
|
-
{% translate '
|
15
|
+
<label class="label is-detail has-field">
|
16
|
+
{% translate 'E-Mail' %}
|
17
17
|
<div class="field">
|
18
|
-
<p class="control is-expanded"
|
18
|
+
<p class="control is-expanded">{{ object.email }}</p>
|
19
19
|
</div>
|
20
20
|
</label>
|
21
21
|
</div>
|
22
22
|
</div>
|
23
23
|
<div class="columns">
|
24
24
|
<div class="column is-12">
|
25
|
-
<label class="label has-field">
|
25
|
+
<label class="label is-detail has-field">
|
26
26
|
{% translate 'Name' %}
|
27
27
|
<div class="field">
|
28
|
-
<p class="control is-expanded"
|
28
|
+
<p class="control is-expanded">{{ object.full_name|default_if_none:'' }}</p>
|
29
29
|
</div>
|
30
30
|
</label>
|
31
31
|
</div>
|
32
32
|
</div>
|
33
33
|
<div class="columns">
|
34
34
|
<div class="column is-6">
|
35
|
-
<label class="label has-field">
|
35
|
+
<label class="label is-detail has-field">
|
36
36
|
{% translate 'Language' %}
|
37
37
|
<div class="field">
|
38
|
-
<p class="control"
|
38
|
+
<p class="control">{{ object.language_code_display }}</p>
|
39
39
|
</div>
|
40
40
|
</label>
|
41
41
|
</div>
|
accrete/contrib/user/views.py
CHANGED
@@ -43,7 +43,7 @@ def user_detail(request):
|
|
43
43
|
ClientAction(_('Change Password'), url='')
|
44
44
|
]
|
45
45
|
)
|
46
|
-
return render(request, 'user/user_detail.html', ctx.
|
46
|
+
return render(request, 'user/user_detail.html', ctx.dict())
|
47
47
|
|
48
48
|
|
49
49
|
@login_required()
|
@@ -56,5 +56,5 @@ def user_edit(request):
|
|
56
56
|
form = save_form(UserForm(request.POST, instance=request.user))
|
57
57
|
if form.is_saved:
|
58
58
|
return redirect('user:detail')
|
59
|
-
ctx = FormContext(request.user, request.GET.dict(), context={'form': form}).
|
59
|
+
ctx = FormContext(request.user, request.GET.dict(), context={'form': form}).dict()
|
60
60
|
return render(request, 'user/user_form.html', ctx)
|
accrete/queries.py
CHANGED
@@ -4,12 +4,16 @@ from accrete.tenant import get_tenant
|
|
4
4
|
|
5
5
|
_logger = logging.getLogger(__name__)
|
6
6
|
|
7
|
+
|
7
8
|
def is_member(tenant, user):
|
8
9
|
return tenant.members.filter(user=user, is_active=True).exists()
|
9
10
|
|
11
|
+
|
10
12
|
def members_for_current_tenant():
|
11
13
|
tenant = get_tenant()
|
12
14
|
return tenant and tenant.members or models.Member.objects.none()
|
13
15
|
|
16
|
+
|
14
17
|
def all_tenants():
|
15
|
-
return models.Tenant.objects.all()
|
18
|
+
return models.Tenant.objects.all()
|
19
|
+
|
@@ -6,7 +6,7 @@ accrete/decorators.py,sha256=vM8GuDHLzwEpHmTGafG-xwMddKvuYFIhe-FrUJqL1_4,678
|
|
6
6
|
accrete/forms.py,sha256=hwUwlfM8v7gPFxH_foN1jIXzYH32GdX-FrPZgh0Qv1Q,11137
|
7
7
|
accrete/middleware.py,sha256=ldnMI4Wv9p1JUyFX_sQSa6Hg4MgkXNbKaHqq5aRsD8s,2629
|
8
8
|
accrete/models.py,sha256=_k8fOYFEOp3WN5rFHNCWDMMJ_H6HGSNiFHPsg2dv2Lg,5229
|
9
|
-
accrete/queries.py,sha256=
|
9
|
+
accrete/queries.py,sha256=U1gmDuFv1h-zf86fygjHLuy-cPurmen5EnQrtZ5hIHc,411
|
10
10
|
accrete/shortcuts.py,sha256=prs4aGWJ1dAeL4K6QLvP5dRHMsE7rDf0c6N_POCCqjo,237
|
11
11
|
accrete/tenant.py,sha256=c_5G8qqO0dHAVY3fiN6oDNKQ61APTpcGgZeHLb9Kb8c,1077
|
12
12
|
accrete/tests.py,sha256=Agltbzwwh5htvq_Qi9vqvxutzmg_GwgPS_N19xJZRlw,7197
|
@@ -15,9 +15,9 @@ accrete/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
15
|
accrete/contrib/sequence/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
16
16
|
accrete/contrib/sequence/admin.py,sha256=mTjab5cVklRUIQcSrsUo-_JgtXEsSdcFj_gfWhlStS4,273
|
17
17
|
accrete/contrib/sequence/apps.py,sha256=2SalOz9piCrbOPudCh0grN1eojN9kEC4-jcNzBmfqEk,164
|
18
|
-
accrete/contrib/sequence/forms.py,sha256=
|
18
|
+
accrete/contrib/sequence/forms.py,sha256=cdjLIytH7WlJK-B2Y6xRRPjOijkK36XpqUuIe4yLLj0,248
|
19
19
|
accrete/contrib/sequence/models.py,sha256=zXK0aCdsDiXQU_51UZBElL6DUvnMdKEAITxPX57NNEI,886
|
20
|
-
accrete/contrib/sequence/queries.py,sha256=
|
20
|
+
accrete/contrib/sequence/queries.py,sha256=ikDK70V07tVS5M81bzMtWCyvpdhmg51Ioh-SgweCtgA,686
|
21
21
|
accrete/contrib/sequence/tests.py,sha256=mrbGGRNg5jwbTJtWWa7zSKdDyeB4vmgZCRc2nk6VY-g,60
|
22
22
|
accrete/contrib/sequence/views.py,sha256=xc1IQHrsij7j33TUbo-_oewy3vs03pw_etpBWaMYJl0,63
|
23
23
|
accrete/contrib/sequence/migrations/0001_initial.py,sha256=iAR_hhGN2wDAk40IS9PwEsm7iYqfgasoKRrTLFEpOY8,1352
|
@@ -32,11 +32,13 @@ 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=FT5qys-ZZCm2a4eLA3vNC-en_TonH-cUn0lPKcR7Puc,301
|
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/
|
39
|
-
accrete/contrib/ui/
|
38
|
+
accrete/contrib/ui/components.py,sha256=3S-Mks9z27Aif-RdIlVFdGbriwkx0cnX8T-wrN0Uxfg,893
|
39
|
+
accrete/contrib/ui/context.py,sha256=Gc9fyheFhePOk9Xhft8X6TH64djAwbOo_FfXJClNoYo,9208
|
40
|
+
accrete/contrib/ui/filter.py,sha256=GCW_EyFGEhJ2QfQbVcL22NDDASL_LbB0O3dKixvqWFY,11958
|
41
|
+
accrete/contrib/ui/querystring.py,sha256=y3JzUPCL_refkKN7YuWKAZI71xdaDxcSyvIUVRq-FW8,3352
|
40
42
|
accrete/contrib/ui/tests.py,sha256=mrbGGRNg5jwbTJtWWa7zSKdDyeB4vmgZCRc2nk6VY-g,60
|
41
43
|
accrete/contrib/ui/urls.py,sha256=TUBlz_CGs9InTZoxM78GSnucA73I8knoh_obt12RUHM,186
|
42
44
|
accrete/contrib/ui/views.py,sha256=WpBKMsxFFG8eG4IN7TW_TPE6i3OFF7gnLDTK7JMKti8,191
|
@@ -115,14 +117,14 @@ accrete/contrib/ui/static/bulma/sass/utilities/extends.sass,sha256=jb5Ipy_k6hBSF
|
|
115
117
|
accrete/contrib/ui/static/bulma/sass/utilities/functions.sass,sha256=tRNFJ9yQTS-GZ6ouJ7EIWiFITL7irYR7srzKwzacvUA,4896
|
116
118
|
accrete/contrib/ui/static/bulma/sass/utilities/initial-variables.sass,sha256=JXNQHoF4YlBTUW6WSJ14_38SA9lbk6VkouzYURmlV8g,2691
|
117
119
|
accrete/contrib/ui/static/bulma/sass/utilities/mixins.sass,sha256=oijSh2f1DPqod0W5op9iVEAFbC1huMqBIJmnHRx3exc,6291
|
118
|
-
accrete/contrib/ui/static/css/accrete.css,sha256=
|
120
|
+
accrete/contrib/ui/static/css/accrete.css,sha256=XD_D3iOxgdvPbrCUjDcKZRvffi0JSz1UpRjsD2HvT90,252592
|
119
121
|
accrete/contrib/ui/static/css/accrete.css.bak,sha256=2RErGa8_tm8lFSamfW3UfqPgEVkPDejk2fh8IidW-B0,2359
|
120
|
-
accrete/contrib/ui/static/css/accrete.css.map,sha256=
|
121
|
-
accrete/contrib/ui/static/css/accrete.scss,sha256=
|
122
|
+
accrete/contrib/ui/static/css/accrete.css.map,sha256=3A_FCH0faKyNSXtRYMHBk4ZaUmF7KTP115aO79pdMfU,55658
|
123
|
+
accrete/contrib/ui/static/css/accrete.scss,sha256=YTwuzgnTN-ATPQKg9cKSrE-VRjp2RiI4Wt_9FvN5TLQ,3882
|
122
124
|
accrete/contrib/ui/static/css/icons.css,sha256=3CsD9CLxOWHwQG6qrIAGc-28o89ef9dwTMaN3syJER8,3462
|
123
125
|
accrete/contrib/ui/static/icons/Logo.svg,sha256=hGZuxrAa-LRpFavFiF8Lnc7X9OQcqmb6Xl_dxx-27hM,1861
|
124
126
|
accrete/contrib/ui/static/icons/accrete.svg,sha256=CWHJKIgk3hxL7xIaFSz2j1cK-eF1TroCbjcF58bgOIs,1024
|
125
|
-
accrete/contrib/ui/static/js/filter.js,sha256=
|
127
|
+
accrete/contrib/ui/static/js/filter.js,sha256=C95iOMmpEf6VEk2fyTE2XnTZNtVelTw0L9POnA37Xso,21454
|
126
128
|
accrete/contrib/ui/static/js/list.js,sha256=OX_81ifRmawE-1QBU5Qpq_E6sHiiNwIPleETAn9EOJw,4280
|
127
129
|
accrete/contrib/ui/static/js/navbar.js,sha256=9QGZfPgGWjCBZhZhrRf983hoPnRlwQP-Pl73c2vISYs,628
|
128
130
|
accrete/contrib/ui/static/js/utils.js,sha256=6RKh3EJ57gx5UIjBcSaeZEs7lZdLvyYT9VAQ-WqlKSk,173
|
@@ -133,18 +135,22 @@ accrete/contrib/ui/templates/django/forms/widgets/input.html,sha256=CRu81kTsbPwi
|
|
133
135
|
accrete/contrib/ui/templates/django/forms/widgets/select.html,sha256=jT_UnHizHfdWTdJoSxjcIqTiR7NbVBA4bBSvkuDPRtw,394
|
134
136
|
accrete/contrib/ui/templates/django/forms/widgets/text.html,sha256=MSmLlQc7PsPoDLVtTOOiWNprrsPriNr712yFxaHyDIo,47
|
135
137
|
accrete/contrib/ui/templates/django/forms/widgets/textarea.html,sha256=c9BTedqb3IkXLyVYd0p9pR8DFnsXCNGoxVBWZTk_Fic,278
|
136
|
-
accrete/contrib/ui/templates/ui/detail.html,sha256=
|
138
|
+
accrete/contrib/ui/templates/ui/detail.html,sha256=AffbViFC9VtkUyMwEToFKhV_Oh2TM_qPJDSWFVhJAjg,469
|
137
139
|
accrete/contrib/ui/templates/ui/form.html,sha256=HpcZCDU_ur_Zf5gpnH_F8OV6qfOYPl6Ecqg6w5RIayQ,405
|
138
|
-
accrete/contrib/ui/templates/ui/layout.html,sha256=
|
139
|
-
accrete/contrib/ui/templates/ui/list.html,sha256=
|
140
|
-
accrete/contrib/ui/templates/ui/table.html,sha256=
|
141
|
-
accrete/contrib/ui/templates/ui/partials/filter.html,sha256=
|
140
|
+
accrete/contrib/ui/templates/ui/layout.html,sha256=mwHPHd49QtYh-5ppRNJUAgWC1LSsYh_l4li0vBi1czY,8201
|
141
|
+
accrete/contrib/ui/templates/ui/list.html,sha256=KQYdACatxJWHcyBB7sx5yBsV-q-GUL-fCv-iAem7jUg,803
|
142
|
+
accrete/contrib/ui/templates/ui/table.html,sha256=gmfJUeu49qzd4wPBcR57puRtRuyTB-DE7DmmKwjgz2w,2715
|
143
|
+
accrete/contrib/ui/templates/ui/partials/filter.html,sha256=t113Z_Lmbj2Sxmzt3OeVt4oJw_xA2H8ooRgC1cv12zc,2296
|
142
144
|
accrete/contrib/ui/templates/ui/partials/form_errors.html,sha256=1_TQvTdiejsn-43YSyp2YfnP52P-MFYb-HGY0DLm4oA,991
|
143
145
|
accrete/contrib/ui/templates/ui/partials/form_modal.html,sha256=FFDfI5qjOCUBSGqDjBXa8tcqN2q94wOOCNFDaiyplHQ,1032
|
144
|
-
accrete/contrib/ui/templates/ui/partials/header.html,sha256=
|
146
|
+
accrete/contrib/ui/templates/ui/partials/header.html,sha256=wqdeky2iBgRDcobGhBAKDQv8wQ6SBTUOos8s_aN7UG0,2629
|
145
147
|
accrete/contrib/ui/templates/ui/partials/onchange_form.html,sha256=K5twTGqRUW1iM2dGtdWntjsJvJVo5EIzKxX2HK-H1yw,160
|
146
|
-
accrete/contrib/ui/templates/ui/partials/pagination_detail.html,sha256=
|
147
|
-
accrete/contrib/ui/templates/ui/partials/pagination_list.html,sha256=
|
148
|
+
accrete/contrib/ui/templates/ui/partials/pagination_detail.html,sha256=pbq9YwvrIabJW8EG1guFOGNxiRTf80MFK2vsgwGkYtE,940
|
149
|
+
accrete/contrib/ui/templates/ui/partials/pagination_list.html,sha256=icnSHh-Blm2LrvcoDiy_Yy7yOX2Npnoi45auGYmD7-8,1301
|
150
|
+
accrete/contrib/ui/templates/ui/partials/table_field.html,sha256=ZuabPAc9vUBQ0hTSIO56rGClo2Lfs6K-luR3gErNTI8,524
|
151
|
+
accrete/contrib/ui/templates/ui/partials/table_field_float.html,sha256=GH_jFdpk8wEJXv4QfO6c3URYrZGGLeuSyWwWl2cWxwQ,45
|
152
|
+
accrete/contrib/ui/templates/ui/partials/table_field_monetary.html,sha256=Wtod9vel2dD4vG8lUVLbtls4aU_2EG3p0E1QRRUSH10,166
|
153
|
+
accrete/contrib/ui/templates/ui/partials/table_field_string.html,sha256=GH_jFdpk8wEJXv4QfO6c3URYrZGGLeuSyWwWl2cWxwQ,45
|
148
154
|
accrete/contrib/ui/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
149
155
|
accrete/contrib/ui/templatetags/accrete_ui.py,sha256=LWfxxk1JDhJanbcjYNSSW1-MNvEN8etqYBBvgKKMFIs,2550
|
150
156
|
accrete/contrib/user/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -155,15 +161,15 @@ accrete/contrib/user/middleware.py,sha256=qblcujwJsthopagyT-hPFq4HsMyGt-VvqZw5TQ
|
|
155
161
|
accrete/contrib/user/models.py,sha256=xbDt2z03KzyJbd9mea2hRedsdddcn4614cckr_frY9s,3876
|
156
162
|
accrete/contrib/user/tests.py,sha256=mrbGGRNg5jwbTJtWWa7zSKdDyeB4vmgZCRc2nk6VY-g,60
|
157
163
|
accrete/contrib/user/urls.py,sha256=pTjnYuSHx3Mlx87uDULoWO1gB0moxTQG7YwXHsa-FTk,316
|
158
|
-
accrete/contrib/user/views.py,sha256=
|
164
|
+
accrete/contrib/user/views.py,sha256=m-nmRSL3XdeM_9UD_7jlEg_dnPIgDoT6qf0uhPTMI40,1978
|
159
165
|
accrete/contrib/user/locale/de/LC_MESSAGES/django.mo,sha256=p3rgUg6WltAVIMkQsjvjBqTsd_usLhSr1GH4Cyltc2c,433
|
160
166
|
accrete/contrib/user/locale/de/LC_MESSAGES/django.po,sha256=f_Nxpo3HTm2L3f3zoHLfeWsZ-4IQp_EEVSku6TCZSvw,1870
|
161
167
|
accrete/contrib/user/migrations/0001_initial.py,sha256=JWfM9PcMDfkJUdCjLWuWieGs6643qP0KdbCyr5uAZoY,2950
|
162
168
|
accrete/contrib/user/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
163
169
|
accrete/contrib/user/templates/user/accrete_navbar_end.html,sha256=PmdfM6LuYdhVbDJ62DcmwU0F3OH8KSwKzjXRc282BJk,343
|
164
170
|
accrete/contrib/user/templates/user/login.html,sha256=qKUqF5WCkWPrbwQMaa05Ou7zkM_CeVrJzHsjsDWNPhQ,1644
|
165
|
-
accrete/contrib/user/templates/user/user_detail.html,sha256=
|
166
|
-
accrete/contrib/user/templates/user/user_form.html,sha256=
|
171
|
+
accrete/contrib/user/templates/user/user_detail.html,sha256=SMkghUKVncVq3KFGBxADJf_wDnLYwmK4oDTKLO0Ejlo,1445
|
172
|
+
accrete/contrib/user/templates/user/user_form.html,sha256=4o24KV940D_KsBP4YwBguwTFW9nYz1uz-RILs91M7Po,1935
|
167
173
|
accrete/contrib/user_registration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
168
174
|
accrete/contrib/user_registration/admin.py,sha256=kwmGTsg4Hii-lsw9-UaJG7AhQ4k4SPi48GSrtpZ4YR4,119
|
169
175
|
accrete/contrib/user_registration/apps.py,sha256=mYu3fuuubfjImeJHk4D_Wd6Edw2r3oUNXGcFbAkhir4,181
|
@@ -182,7 +188,7 @@ accrete/migrations/0002_initial.py,sha256=dFOM7kdHlx7pVAh8cTDlZMtciN4O9Z547HAzEK
|
|
182
188
|
accrete/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
183
189
|
accrete/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
184
190
|
accrete/utils/dates.py,sha256=XI58CqabLCC-Sg6qo5TPWh-pHuuZfDdGDU6KQeAMlGo,1066
|
185
|
-
accrete-0.0.
|
186
|
-
accrete-0.0.
|
187
|
-
accrete-0.0.
|
188
|
-
accrete-0.0.
|
191
|
+
accrete-0.0.23.dist-info/METADATA,sha256=bdnglU1DO7FoOvo9ruN2r7cDhsQcRFqkLQJq9v9XG0g,4846
|
192
|
+
accrete-0.0.23.dist-info/WHEEL,sha256=9QBuHhg6FNW7lppboF2vKVbCGTVzsFykgRQjjlajrhA,87
|
193
|
+
accrete-0.0.23.dist-info/licenses/LICENSE,sha256=_7laeMIHnsd3Y2vJEXDYXq_PEXxIcjgJsGt8UIKTRWc,1057
|
194
|
+
accrete-0.0.23.dist-info/RECORD,,
|