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.
Files changed (32) hide show
  1. accrete/contrib/sequence/forms.py +2 -2
  2. accrete/contrib/sequence/queries.py +3 -4
  3. accrete/contrib/ui/__init__.py +10 -5
  4. accrete/contrib/ui/components.py +49 -0
  5. accrete/contrib/ui/context.py +284 -0
  6. accrete/contrib/ui/filter.py +16 -17
  7. accrete/contrib/ui/querystring.py +93 -0
  8. accrete/contrib/ui/static/css/accrete.css +225 -162
  9. accrete/contrib/ui/static/css/accrete.css.map +1 -1
  10. accrete/contrib/ui/static/css/accrete.scss +90 -21
  11. accrete/contrib/ui/static/js/filter.js +18 -11
  12. accrete/contrib/ui/templates/ui/detail.html +1 -3
  13. accrete/contrib/ui/templates/ui/layout.html +3 -3
  14. accrete/contrib/ui/templates/ui/list.html +3 -3
  15. accrete/contrib/ui/templates/ui/partials/filter.html +1 -0
  16. accrete/contrib/ui/templates/ui/partials/header.html +1 -1
  17. accrete/contrib/ui/templates/ui/partials/pagination_detail.html +2 -2
  18. accrete/contrib/ui/templates/ui/partials/pagination_list.html +5 -5
  19. accrete/contrib/ui/templates/ui/partials/table_field.html +15 -0
  20. accrete/contrib/ui/templates/ui/partials/table_field_float.html +1 -0
  21. accrete/contrib/ui/templates/ui/partials/table_field_monetary.html +4 -0
  22. accrete/contrib/ui/templates/ui/partials/table_field_string.html +1 -0
  23. accrete/contrib/ui/templates/ui/table.html +13 -4
  24. accrete/contrib/user/templates/user/user_detail.html +9 -9
  25. accrete/contrib/user/templates/user/user_form.html +2 -0
  26. accrete/contrib/user/views.py +2 -2
  27. accrete/queries.py +5 -1
  28. {accrete-0.0.21.dist-info → accrete-0.0.23.dist-info}/METADATA +1 -1
  29. {accrete-0.0.21.dist-info → accrete-0.0.23.dist-info}/RECORD +31 -25
  30. accrete/contrib/ui/helper.py +0 -432
  31. {accrete-0.0.21.dist-info → accrete-0.0.23.dist-info}/WHEEL +0 -0
  32. {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: {{ field.align.value }}">{{ field.label }}</th>
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 style="text-align: {{ field.align.value }}">{{ obj|get_attr:field.name|default_if_none:'---' }}</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"><input class="input" readonly value="{{ object.username|default_if_none:'' }}"/>
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 'Username' %}
15
+ <label class="label is-detail has-field">
16
+ {% translate 'E-Mail' %}
17
17
  <div class="field">
18
- <p class="control is-expanded"><input class="input" readonly value="{{ object.email }}"/>
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"><input class="input" readonly value="{{ object.full_name|default_if_none:'' }}"/></p>
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"><input class="input" readonly value="{{ object.language_code_display }}"/></p>
38
+ <p class="control">{{ object.language_code_display }}</p>
39
39
  </div>
40
40
  </label>
41
41
  </div>
@@ -27,7 +27,9 @@
27
27
 
28
28
  </label>
29
29
  </div>
30
+ </div>
30
31
 
32
+ <div class="columns">
31
33
  <div class="column is-6">
32
34
  <label class="label has-field">
33
35
  {{ form.last_name.label }}
@@ -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.get_context())
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}).get_context()
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
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: accrete
3
- Version: 0.0.21
3
+ Version: 0.0.23
4
4
  Summary: Django Shared Schema Multi Tenant
5
5
  Author-email: Benedikt Jilek <benedikt.jilek@pm.me>
6
6
  License: Copyright (c) 2023 Benedikt Jilek
@@ -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=j5VFl50Zma6CdyFWahkNeimUlDRzu8WkHB4rGWy0hhA,406
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=M3BCc3Wsbpymweny5caBe6pUENwjPgfMGdLBKWfwkYw,235
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=ykSxbbYjI2n3pjZskNXBGTJk0ca7H0NFzFP-nZlVDQU,684
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=layN2jBi-MaRYqZW5AzXA_SVyeHHOZjy-HWGOj3S8I8,232
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/filter.py,sha256=0tZoCLB-VI-pMqHLsIKPf9p5clBUyBNq_ljBSUPlhHs,12124
39
- accrete/contrib/ui/helper.py,sha256=UIWSig9XUJyluHi9vyWO7RQyqlyh30jgf2HRJ3VqcYA,13603
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=PbXVIJvDo7qxgs7DW369I_ieJNLffewM-rt1t4q6HcM,250343
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=n5miqt08URe1H_s77O3X6OvFvoBysjBBgtyzUmFsjvk,55396
121
- accrete/contrib/ui/static/css/accrete.scss,sha256=Trw8usLLLgrSzmHFbXyD0dX9euEKVHNFdowKMKebH_M,2590
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=tQl8qCC9FQohelC1gnqp_kzfT5HcGJG84wq1Hex8zcM,21181
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=m-CpLcoK-dL5jPlIY6Hzyq2EyEqcFZ5Bn-kB-T0Oqao,510
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=DQzWspKT9PzE5iMa1PUUncUb3zGbAsYc2LmB7Euxc2A,8293
139
- accrete/contrib/ui/templates/ui/list.html,sha256=HsmJAWDZU-qCPh4mrc8vGzkULbViG5fnLcmmp-NO2-4,671
140
- accrete/contrib/ui/templates/ui/table.html,sha256=FUYUW-jQ0TK_C6aiqypeN08fNKgzwoIyz_bpDYF_FEA,1964
141
- accrete/contrib/ui/templates/ui/partials/filter.html,sha256=fLycS0ybUZHtyZsFY31svmsHeKkzMAPFqY0TchnkkDw,2126
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=kgQVM7Nxfx8dfdtb9sQuDRLsmjp-DlUklqblhyd43Z8,2609
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=ft0w4phwCBhaH4sRiupRejii9CcZCAOLxme9j12NelU,908
147
- accrete/contrib/ui/templates/ui/partials/pagination_list.html,sha256=BZGxJ2ooFp_sFtiqQ6IWpRy3-N0SYhqBicy1zdnBQaY,1172
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=it6KJA88P8xFXOZKhR0CxKhGkcrIpwFDFI_nsjcVnRk,1992
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=DfI1p354x4a6kIdzQlBW7CPLLrV5PFJjbwlEORWtBzA,1559
166
- accrete/contrib/user/templates/user/user_form.html,sha256=Oh9qjnDbmB1SH84Cm9zKk6gdFHwJBVsXMesd-JPVbtw,1898
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.21.dist-info/METADATA,sha256=MDanxROtey7O_FkjXTI7uZInM2I7BdIpurUzci4K1Aw,4846
186
- accrete-0.0.21.dist-info/WHEEL,sha256=9QBuHhg6FNW7lppboF2vKVbCGTVzsFykgRQjjlajrhA,87
187
- accrete-0.0.21.dist-info/licenses/LICENSE,sha256=_7laeMIHnsd3Y2vJEXDYXq_PEXxIcjgJsGt8UIKTRWc,1057
188
- accrete-0.0.21.dist-info/RECORD,,
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,,