accrete 0.0.10__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 (114) hide show
  1. accrete/contrib/sequence/forms.py +2 -2
  2. accrete/contrib/sequence/queries.py +3 -4
  3. accrete/contrib/ui/__init__.py +11 -5
  4. accrete/contrib/ui/components.py +49 -0
  5. accrete/contrib/ui/context.py +284 -0
  6. accrete/contrib/ui/filter.py +22 -17
  7. accrete/contrib/ui/querystring.py +93 -0
  8. accrete/contrib/ui/static/bulma/LICENSE +21 -0
  9. accrete/contrib/ui/static/bulma/README.md +139 -0
  10. accrete/contrib/ui/static/bulma/bulma.sass +10 -0
  11. accrete/contrib/ui/static/bulma/css/bulma-rtl.css +11851 -0
  12. accrete/contrib/ui/static/bulma/css/bulma-rtl.css.map +1 -0
  13. accrete/contrib/ui/static/bulma/css/bulma-rtl.min.css +1 -0
  14. accrete/contrib/ui/static/bulma/css/bulma.css +11851 -0
  15. accrete/contrib/ui/static/bulma/css/bulma.css.map +1 -0
  16. accrete/contrib/ui/static/bulma/css/bulma.min.css +1 -0
  17. accrete/contrib/ui/static/bulma/package.json +56 -0
  18. accrete/contrib/ui/static/bulma/sass/base/_all.sass +6 -0
  19. accrete/contrib/ui/static/bulma/sass/base/animations.sass +5 -0
  20. accrete/contrib/ui/static/bulma/sass/base/generic.sass +145 -0
  21. accrete/contrib/ui/static/bulma/sass/base/helpers.sass +1 -0
  22. accrete/contrib/ui/static/bulma/sass/base/minireset.sass +79 -0
  23. accrete/contrib/ui/static/bulma/sass/components/_all.sass +15 -0
  24. accrete/contrib/ui/static/bulma/sass/components/breadcrumb.sass +77 -0
  25. accrete/contrib/ui/static/bulma/sass/components/card.sass +103 -0
  26. accrete/contrib/ui/static/bulma/sass/components/dropdown.sass +83 -0
  27. accrete/contrib/ui/static/bulma/sass/components/level.sass +79 -0
  28. accrete/contrib/ui/static/bulma/sass/components/media.sass +59 -0
  29. accrete/contrib/ui/static/bulma/sass/components/menu.sass +59 -0
  30. accrete/contrib/ui/static/bulma/sass/components/message.sass +101 -0
  31. accrete/contrib/ui/static/bulma/sass/components/modal.sass +117 -0
  32. accrete/contrib/ui/static/bulma/sass/components/navbar.sass +446 -0
  33. accrete/contrib/ui/static/bulma/sass/components/pagination.sass +167 -0
  34. accrete/contrib/ui/static/bulma/sass/components/panel.sass +121 -0
  35. accrete/contrib/ui/static/bulma/sass/components/tabs.sass +176 -0
  36. accrete/contrib/ui/static/bulma/sass/elements/_all.sass +16 -0
  37. accrete/contrib/ui/static/bulma/sass/elements/box.sass +26 -0
  38. accrete/contrib/ui/static/bulma/sass/elements/button.sass +357 -0
  39. accrete/contrib/ui/static/bulma/sass/elements/container.sass +29 -0
  40. accrete/contrib/ui/static/bulma/sass/elements/content.sass +162 -0
  41. accrete/contrib/ui/static/bulma/sass/elements/form.sass +1 -0
  42. accrete/contrib/ui/static/bulma/sass/elements/icon.sass +46 -0
  43. accrete/contrib/ui/static/bulma/sass/elements/image.sass +73 -0
  44. accrete/contrib/ui/static/bulma/sass/elements/notification.sass +52 -0
  45. accrete/contrib/ui/static/bulma/sass/elements/other.sass +31 -0
  46. accrete/contrib/ui/static/bulma/sass/elements/progress.sass +73 -0
  47. accrete/contrib/ui/static/bulma/sass/elements/table.sass +134 -0
  48. accrete/contrib/ui/static/bulma/sass/elements/tag.sass +140 -0
  49. accrete/contrib/ui/static/bulma/sass/elements/title.sass +70 -0
  50. accrete/contrib/ui/static/bulma/sass/form/_all.sass +9 -0
  51. accrete/contrib/ui/static/bulma/sass/form/checkbox-radio.sass +22 -0
  52. accrete/contrib/ui/static/bulma/sass/form/file.sass +184 -0
  53. accrete/contrib/ui/static/bulma/sass/form/input-textarea.sass +66 -0
  54. accrete/contrib/ui/static/bulma/sass/form/select.sass +88 -0
  55. accrete/contrib/ui/static/bulma/sass/form/shared.sass +60 -0
  56. accrete/contrib/ui/static/bulma/sass/form/tools.sass +215 -0
  57. accrete/contrib/ui/static/bulma/sass/grid/_all.sass +5 -0
  58. accrete/contrib/ui/static/bulma/sass/grid/columns.sass +513 -0
  59. accrete/contrib/ui/static/bulma/sass/grid/tiles.sass +36 -0
  60. accrete/contrib/ui/static/bulma/sass/helpers/_all.sass +12 -0
  61. accrete/contrib/ui/static/bulma/sass/helpers/color.sass +39 -0
  62. accrete/contrib/ui/static/bulma/sass/helpers/flexbox.sass +35 -0
  63. accrete/contrib/ui/static/bulma/sass/helpers/float.sass +10 -0
  64. accrete/contrib/ui/static/bulma/sass/helpers/other.sass +14 -0
  65. accrete/contrib/ui/static/bulma/sass/helpers/overflow.sass +2 -0
  66. accrete/contrib/ui/static/bulma/sass/helpers/position.sass +7 -0
  67. accrete/contrib/ui/static/bulma/sass/helpers/spacing.sass +31 -0
  68. accrete/contrib/ui/static/bulma/sass/helpers/typography.sass +103 -0
  69. accrete/contrib/ui/static/bulma/sass/helpers/visibility.sass +122 -0
  70. accrete/contrib/ui/static/bulma/sass/layout/_all.sass +6 -0
  71. accrete/contrib/ui/static/bulma/sass/layout/footer.sass +11 -0
  72. accrete/contrib/ui/static/bulma/sass/layout/hero.sass +153 -0
  73. accrete/contrib/ui/static/bulma/sass/layout/section.sass +17 -0
  74. accrete/contrib/ui/static/bulma/sass/utilities/_all.sass +9 -0
  75. accrete/contrib/ui/static/bulma/sass/utilities/animations.sass +1 -0
  76. accrete/contrib/ui/static/bulma/sass/utilities/controls.sass +49 -0
  77. accrete/contrib/ui/static/bulma/sass/utilities/derived-variables.sass +114 -0
  78. accrete/contrib/ui/static/bulma/sass/utilities/extends.sass +25 -0
  79. accrete/contrib/ui/static/bulma/sass/utilities/functions.sass +135 -0
  80. accrete/contrib/ui/static/bulma/sass/utilities/initial-variables.sass +79 -0
  81. accrete/contrib/ui/static/bulma/sass/utilities/mixins.sass +303 -0
  82. accrete/contrib/ui/static/css/accrete.css +10426 -79
  83. accrete/contrib/ui/static/css/accrete.css.bak +156 -0
  84. accrete/contrib/ui/static/css/accrete.css.map +1 -0
  85. accrete/contrib/ui/static/css/accrete.scss +232 -0
  86. accrete/contrib/ui/static/css/icons.css +9 -0
  87. accrete/contrib/ui/static/js/filter.js +129 -57
  88. accrete/contrib/ui/templates/ui/detail.html +1 -3
  89. accrete/contrib/ui/templates/ui/layout.html +37 -20
  90. accrete/contrib/ui/templates/ui/list.html +3 -3
  91. accrete/contrib/ui/templates/ui/partials/filter.html +10 -5
  92. accrete/contrib/ui/templates/ui/partials/header.html +5 -16
  93. accrete/contrib/ui/templates/ui/partials/pagination_detail.html +7 -11
  94. accrete/contrib/ui/templates/ui/partials/pagination_list.html +8 -10
  95. accrete/contrib/ui/templates/ui/partials/table_field.html +15 -0
  96. accrete/contrib/ui/templates/ui/partials/table_field_float.html +1 -0
  97. accrete/contrib/ui/templates/ui/partials/table_field_monetary.html +4 -0
  98. accrete/contrib/ui/templates/ui/partials/table_field_string.html +1 -0
  99. accrete/contrib/ui/templates/ui/table.html +20 -5
  100. accrete/contrib/ui/templatetags/accrete_ui.py +5 -3
  101. accrete/contrib/user/forms.py +28 -0
  102. accrete/contrib/user/models.py +16 -0
  103. accrete/contrib/user/templates/user/accrete_navbar_end.html +9 -0
  104. accrete/contrib/user/templates/user/user_detail.html +43 -0
  105. accrete/contrib/user/templates/user/user_form.html +56 -0
  106. accrete/contrib/user/urls.py +3 -1
  107. accrete/contrib/user/views.py +35 -3
  108. accrete/queries.py +5 -1
  109. {accrete-0.0.10.dist-info → accrete-0.0.23.dist-info}/METADATA +1 -1
  110. accrete-0.0.23.dist-info/RECORD +194 -0
  111. accrete/contrib/ui/helper.py +0 -417
  112. accrete-0.0.10.dist-info/RECORD +0 -107
  113. {accrete-0.0.10.dist-info → accrete-0.0.23.dist-info}/WHEEL +0 -0
  114. {accrete-0.0.10.dist-info → accrete-0.0.23.dist-info}/licenses/LICENSE +0 -0
@@ -9,15 +9,18 @@
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>{{ field.label }}</th>
19
+ <th style="text-align: {% firstof field.header_alignment.value field.alignment.value %}">{{ field.label }}</th>
20
20
  {% endfor %}
21
+ {% if unselect_button %}
22
+ <th></th>
23
+ {% endif %}
21
24
  {% endblock %}
22
25
  </tr>
23
26
  {% endblock %}
@@ -25,16 +28,28 @@
25
28
  <tbody style="z-index: 9">
26
29
  {% for obj in page %}
27
30
  {% block table_data_row %}
28
- <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 %}>
29
38
  {% block table_data %}
30
- <td><a class="is-underlined" href="{{ obj.get_absolute_url }}{{ querystring }}">{{ obj }}</a></td>
39
+ <td class="responsive-heading has-text-weight-light">{{ obj_label }}:</td>
40
+ <td><a class="is-underlined" href="{{ obj.get_absolute_url }}{{ querystring }}&page={{ page.number }}">{{ obj }}</a></td>
31
41
  {% for field in fields %}
32
- <td>{{ 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' %}
33
44
  {% endfor %}
45
+ {% if unselect_button %}
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>
47
+ {% endif %}
34
48
  {% endblock %}
35
49
  </tr>
36
50
  {% endblock %}
37
51
  {% endfor %}
38
52
  </tbody>
39
53
  </table>
54
+ <progress class="htmx-indicator progress is-small is-primary" max="100">15%</progress>
40
55
  {% endblock %}
@@ -9,11 +9,13 @@ register = template.Library()
9
9
 
10
10
 
11
11
  @register.simple_tag(name='combine_templates')
12
- def combine_templates(template_name):
12
+ def combine_templates(template_name, request=None):
13
13
  html = ''
14
14
  for app in settings.INSTALLED_APPS:
15
15
  try:
16
- html += render_to_string(f'{app.split(".")[-1]}/{template_name}')
16
+ html += render_to_string(
17
+ f'{app.split(".")[-1]}/{template_name}', request=request
18
+ )
17
19
  except template.TemplateDoesNotExist:
18
20
  continue
19
21
  return mark_safe(html)
@@ -37,7 +39,7 @@ def query_params_to_html(params):
37
39
  html = ''
38
40
  for param in params:
39
41
  html += build(param)
40
- return html
42
+ return mark_safe(html)
41
43
 
42
44
 
43
45
  def build(param):
@@ -0,0 +1,28 @@
1
+ from django.conf import settings
2
+ from django.utils.translation import gettext_lazy as _
3
+ from django.forms import ModelForm, fields
4
+ from .models import User
5
+
6
+
7
+ class UserForm(ModelForm):
8
+
9
+ language_code = fields.ChoiceField(
10
+ label=_('Language'),
11
+ choices=settings.LANGUAGES,
12
+ required=True
13
+ )
14
+
15
+ class Meta:
16
+ model = User
17
+ fields = [
18
+ 'username',
19
+ 'first_name',
20
+ 'last_name',
21
+ ]
22
+
23
+ def save(self, commit=True):
24
+ super().save(commit=False)
25
+ self.instance.language_code = self.cleaned_data['language_code']
26
+ if commit:
27
+ self.instance.save()
28
+ self.save_m2m()
@@ -1,3 +1,4 @@
1
+ from django.conf import settings
1
2
  from django.db import models
2
3
  from django.contrib.auth.models import (
3
4
  AbstractBaseUser,
@@ -7,6 +8,12 @@ from django.contrib.auth.validators import UnicodeUsernameValidator
7
8
  from django.contrib.auth.models import BaseUserManager
8
9
  from django.utils.translation import gettext_lazy as _
9
10
  from django.utils import timezone
11
+ from django.shortcuts import resolve_url
12
+
13
+ LANGUAGE_DISPLAY = {
14
+ lang[0]: lang[1]
15
+ for lang in settings.LANGUAGES
16
+ }
10
17
 
11
18
 
12
19
  class UserManager(BaseUserManager):
@@ -116,3 +123,12 @@ class User(AbstractBaseUser, PermissionsMixin):
116
123
 
117
124
  def __str__(self):
118
125
  return self.username or self.email
126
+
127
+ def get_absolute_url(self):
128
+ return resolve_url('user:detail')
129
+
130
+ def full_name(self):
131
+ return f'{self.first_name or ""}{" " if self.first_name else ""}{self.last_name or ""}'
132
+
133
+ def language_code_display(self):
134
+ return LANGUAGE_DISPLAY.get(self.language_code)
@@ -0,0 +1,9 @@
1
+ {% load i18n %}
2
+
3
+ <a class="navbar-item" href="{% url 'user:detail' %}">{% translate 'Preferences' %}</a>
4
+ {% if request.user.is_staff %}
5
+ <hr class="navbar-divider">
6
+ <a class="navbar-item" href="/admin/">Admin</a>
7
+ {% endif %}
8
+ <hr class="navbar-divider">
9
+ <a class="navbar-item" href="{% url 'user:logout' %}">{% translate 'Logout' %}</a>
@@ -0,0 +1,43 @@
1
+ {% extends 'ui/detail.html' %}
2
+ {% load i18n %}
3
+
4
+ {% block detail_content %}
5
+ <div class="columns">
6
+ <div class="column is-6">
7
+ <label class="label is-detail has-field">
8
+ {% translate 'Username' %}
9
+ <div class="field">
10
+ <p class="control is-expanded">{{ object.username|default_if_none:'' }}</p>
11
+ </div>
12
+ </label>
13
+ </div>
14
+ <div class="column is-6">
15
+ <label class="label is-detail has-field">
16
+ {% translate 'E-Mail' %}
17
+ <div class="field">
18
+ <p class="control is-expanded">{{ object.email }}</p>
19
+ </div>
20
+ </label>
21
+ </div>
22
+ </div>
23
+ <div class="columns">
24
+ <div class="column is-12">
25
+ <label class="label is-detail has-field">
26
+ {% translate 'Name' %}
27
+ <div class="field">
28
+ <p class="control is-expanded">{{ object.full_name|default_if_none:'' }}</p>
29
+ </div>
30
+ </label>
31
+ </div>
32
+ </div>
33
+ <div class="columns">
34
+ <div class="column is-6">
35
+ <label class="label is-detail has-field">
36
+ {% translate 'Language' %}
37
+ <div class="field">
38
+ <p class="control">{{ object.language_code_display }}</p>
39
+ </div>
40
+ </label>
41
+ </div>
42
+ </div>
43
+ {% endblock %}
@@ -0,0 +1,56 @@
1
+ {% extends 'ui/form.html' %}
2
+ {% load i18n %}
3
+
4
+ {% block form %}
5
+ <form id="form" method="post" action="">
6
+ {% csrf_token %}
7
+ <div class="columns">
8
+ <div class="column is-6">
9
+ <label class="label has-field">
10
+ {{ form.username.label }}
11
+ <span class="has-text-danger is-size-7">{{ form.username.errors }}</span>
12
+ <div class="field">
13
+ <p class="control is-expanded">{{ form.username }}</p>
14
+ </div>
15
+ </label>
16
+ </div>
17
+ </div>
18
+
19
+ <div class="columns">
20
+ <div class="column is-6">
21
+ <label class="label has-field">
22
+ {{ form.first_name.label }}
23
+ <span class="has-text-danger is-size-7">{{ form.first_name.errors }}</span>
24
+ <div class="field">
25
+ <p class="control is-fullwidth is-expanded">{{ form.first_name }}</p>
26
+ </div>
27
+
28
+ </label>
29
+ </div>
30
+ </div>
31
+
32
+ <div class="columns">
33
+ <div class="column is-6">
34
+ <label class="label has-field">
35
+ {{ form.last_name.label }}
36
+ <span class="has-text-danger is-size-7">{{ form.last_name.errors }}</span>
37
+ <div class="field">
38
+ <p class="control is-fullwidth is-expanded">{{ form.last_name }}</p>
39
+ </div>
40
+ </label>
41
+ </div>
42
+ </div>
43
+
44
+ <div class="columns">
45
+ <div class="column is-6">
46
+ <label class="label has-field is-required">
47
+ {{ form.language_code.label }}
48
+ <span class="has-text-danger is-size-7">{{ form.language_code.errors }}</span>
49
+ <div class="field">
50
+ <p class="control is-fullwidth is-expanded"><span class="select is-fullwidth">{{ form.language_code }}</span></p>
51
+ </div>
52
+ </label>
53
+ </div>
54
+ </div>
55
+ </form>
56
+ {% endblock %}
@@ -6,5 +6,7 @@ app_name = 'user'
6
6
 
7
7
  urlpatterns = [
8
8
  path('login/', views.LoginView.as_view(), name='login'),
9
- path('logout/', views.LogoutView.as_view(), name='logout')
9
+ path('logout/', views.LogoutView.as_view(), name='logout'),
10
+ path('detail/', views.user_detail, name='detail'),
11
+ path('edit/', views.user_edit, name='edit')
10
12
  ]
@@ -1,8 +1,13 @@
1
1
  from django.views.generic import View
2
2
  from django.contrib.auth.forms import AuthenticationForm
3
- from django.contrib.auth import logout
4
- from django.contrib.auth import views
5
- from django.shortcuts import redirect
3
+ from django.contrib.auth import logout, views
4
+ from django.contrib.auth.decorators import login_required
5
+ from django.shortcuts import redirect, render, reverse
6
+ from django.utils.translation import gettext_lazy as _
7
+
8
+ from accrete.shortcuts import save_form
9
+ from accrete.contrib.ui import FormContext, DetailContext, ClientAction
10
+ from .forms import UserForm
6
11
 
7
12
 
8
13
  class LoginView(views.LoginView):
@@ -26,3 +31,30 @@ class LogoutView(View):
26
31
  def get(request, *args, **kwargs):
27
32
  logout(request)
28
33
  return redirect('user:login')
34
+
35
+
36
+ @login_required()
37
+ def user_detail(request):
38
+ ctx = DetailContext(
39
+ request.user, request.GET.dict(), paginate_by=0, breadcrumbs=[],
40
+ actions=[
41
+ ClientAction(_('Edit'), url=reverse('user:edit')),
42
+ ClientAction(_('Change E-Mail'), url=''),
43
+ ClientAction(_('Change Password'), url='')
44
+ ]
45
+ )
46
+ return render(request, 'user/user_detail.html', ctx.dict())
47
+
48
+
49
+ @login_required()
50
+ def user_edit(request):
51
+ form = UserForm(
52
+ initial={'language_code': request.user.language_code},
53
+ instance=request.user
54
+ )
55
+ if request.method == 'POST':
56
+ form = save_form(UserForm(request.POST, instance=request.user))
57
+ if form.is_saved:
58
+ return redirect('user:detail')
59
+ ctx = FormContext(request.user, request.GET.dict(), context={'form': form}).dict()
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.10
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
@@ -0,0 +1,194 @@
1
+ accrete/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ accrete/admin.py,sha256=MUYUmCFlGYPowiXTbwl4_Q6Cq0-neiL53WW4P76JCLs,1174
3
+ accrete/apps.py,sha256=F7ynMLHJr_6bRujWtZVUzCliY2CGKiDvyUmL4F68L2E,146
4
+ accrete/config.py,sha256=eJUbvyBO3DvAD6xkVKjTAzlXy7V7EK9bVyb91girfUs,299
5
+ accrete/decorators.py,sha256=vM8GuDHLzwEpHmTGafG-xwMddKvuYFIhe-FrUJqL1_4,678
6
+ accrete/forms.py,sha256=hwUwlfM8v7gPFxH_foN1jIXzYH32GdX-FrPZgh0Qv1Q,11137
7
+ accrete/middleware.py,sha256=ldnMI4Wv9p1JUyFX_sQSa6Hg4MgkXNbKaHqq5aRsD8s,2629
8
+ accrete/models.py,sha256=_k8fOYFEOp3WN5rFHNCWDMMJ_H6HGSNiFHPsg2dv2Lg,5229
9
+ accrete/queries.py,sha256=U1gmDuFv1h-zf86fygjHLuy-cPurmen5EnQrtZ5hIHc,411
10
+ accrete/shortcuts.py,sha256=prs4aGWJ1dAeL4K6QLvP5dRHMsE7rDf0c6N_POCCqjo,237
11
+ accrete/tenant.py,sha256=c_5G8qqO0dHAVY3fiN6oDNKQ61APTpcGgZeHLb9Kb8c,1077
12
+ accrete/tests.py,sha256=Agltbzwwh5htvq_Qi9vqvxutzmg_GwgPS_N19xJZRlw,7197
13
+ accrete/views.py,sha256=6BERfW0JbB-dllSsDXRGOrcQrytok2JB5ax0RLZEers,2315
14
+ accrete/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
+ accrete/contrib/sequence/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
+ accrete/contrib/sequence/admin.py,sha256=mTjab5cVklRUIQcSrsUo-_JgtXEsSdcFj_gfWhlStS4,273
17
+ accrete/contrib/sequence/apps.py,sha256=2SalOz9piCrbOPudCh0grN1eojN9kEC4-jcNzBmfqEk,164
18
+ accrete/contrib/sequence/forms.py,sha256=cdjLIytH7WlJK-B2Y6xRRPjOijkK36XpqUuIe4yLLj0,248
19
+ accrete/contrib/sequence/models.py,sha256=zXK0aCdsDiXQU_51UZBElL6DUvnMdKEAITxPX57NNEI,886
20
+ accrete/contrib/sequence/queries.py,sha256=ikDK70V07tVS5M81bzMtWCyvpdhmg51Ioh-SgweCtgA,686
21
+ accrete/contrib/sequence/tests.py,sha256=mrbGGRNg5jwbTJtWWa7zSKdDyeB4vmgZCRc2nk6VY-g,60
22
+ accrete/contrib/sequence/views.py,sha256=xc1IQHrsij7j33TUbo-_oewy3vs03pw_etpBWaMYJl0,63
23
+ accrete/contrib/sequence/migrations/0001_initial.py,sha256=iAR_hhGN2wDAk40IS9PwEsm7iYqfgasoKRrTLFEpOY8,1352
24
+ accrete/contrib/sequence/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
+ accrete/contrib/system_mail/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
26
+ accrete/contrib/system_mail/admin.py,sha256=9hXwwfZn446juyRoBOygLWm12X6N9waRC-1LHBLrgZk,227
27
+ accrete/contrib/system_mail/apps.py,sha256=yIWgsa5GV8NPOJBtDZQJljSZ5v_mOP6VJrTfo_HkLF8,169
28
+ accrete/contrib/system_mail/forms.py,sha256=baRoj0YQvc-b83y69dbxVgCN5BWoQsco_YRNqqbubY8,723
29
+ accrete/contrib/system_mail/models.py,sha256=mTx8YAtyyrUE2B8iKQDyJVsUqN1EGHg8XKgdoWibZ9g,880
30
+ accrete/contrib/system_mail/tasks.py,sha256=xfAX49wIxYuWDZBuPrWyQt3GPpukK0xMjHtUsgEsMkI,1089
31
+ accrete/contrib/system_mail/tests.py,sha256=mrbGGRNg5jwbTJtWWa7zSKdDyeB4vmgZCRc2nk6VY-g,60
32
+ accrete/contrib/system_mail/views.py,sha256=xc1IQHrsij7j33TUbo-_oewy3vs03pw_etpBWaMYJl0,63
33
+ accrete/contrib/system_mail/migrations/0001_initial.py,sha256=6cwkkRXGjXvwXoMjjgmWmcPyXSTlUbhW1vMiHObk9MQ,1074
34
+ accrete/contrib/system_mail/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
35
+ accrete/contrib/ui/__init__.py,sha256=FT5qys-ZZCm2a4eLA3vNC-en_TonH-cUn0lPKcR7Puc,301
36
+ accrete/contrib/ui/admin.py,sha256=suMo4x8I3JBxAFBVIdE-5qnqZ6JAZV0FESABHOSc-vg,63
37
+ accrete/contrib/ui/apps.py,sha256=E0ao2ox6PQ3ldfeR17FXJUUJuGiWjm2DPCxHbPXGzls,152
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
42
+ accrete/contrib/ui/tests.py,sha256=mrbGGRNg5jwbTJtWWa7zSKdDyeB4vmgZCRc2nk6VY-g,60
43
+ accrete/contrib/ui/urls.py,sha256=TUBlz_CGs9InTZoxM78GSnucA73I8knoh_obt12RUHM,186
44
+ accrete/contrib/ui/views.py,sha256=WpBKMsxFFG8eG4IN7TW_TPE6i3OFF7gnLDTK7JMKti8,191
45
+ accrete/contrib/ui/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
46
+ accrete/contrib/ui/static/bulma/LICENSE,sha256=EOzxUuYjW9jT_euIkYJyuba6uVd1AGnbmvMBLMM4P34,1080
47
+ accrete/contrib/ui/static/bulma/README.md,sha256=XBP0X5klxpH8lCJMhbU7UpUf00YL5q9q44d2QvXtYdc,12459
48
+ accrete/contrib/ui/static/bulma/bulma.sass,sha256=13QGD_QJNcvfz2a9mVdoPe-hUnVmj1p88Pto_nzZ6NE,300
49
+ accrete/contrib/ui/static/bulma/package.json,sha256=y9jcazjp6S9F5MTtotR4GQMVLX6_SsiXkzdjh8xEsm4,1761
50
+ accrete/contrib/ui/static/bulma/css/bulma-rtl.css,sha256=zCY7Ue03YZSS9MBM2m7B06L6Sn6Cz9fU-vs5b6uP32s,245633
51
+ accrete/contrib/ui/static/bulma/css/bulma-rtl.css.map,sha256=-N1D64HNJigvKDP3_THRtvVtQWDrv1nG1U-tH9StVeY,98598
52
+ accrete/contrib/ui/static/bulma/css/bulma-rtl.min.css,sha256=qxwTCIpQbNE5diPfI0S_7qLHNxo2KFy4ce819fLfCxs,207445
53
+ accrete/contrib/ui/static/bulma/css/bulma.css,sha256=R4DSq1v8tU59HJzLx01ab7PKiTwJXbdTb6NGLxZo3js,245486
54
+ accrete/contrib/ui/static/bulma/css/bulma.css.map,sha256=d5jTw3lGRj3XSJxccMkYqgEl4_bUlKpjyidt_sUWAiQ,98583
55
+ accrete/contrib/ui/static/bulma/css/bulma.min.css,sha256=rTpdO0HXBCNpreAHcu6tB2Ppg515Vo-5GtYSsnNLz-8,207302
56
+ accrete/contrib/ui/static/bulma/sass/base/_all.sass,sha256=PeeNu_b4PamJYrlzxEg47J23HNJJCdSEVkay84u8kb8,94
57
+ accrete/contrib/ui/static/bulma/sass/base/animations.sass,sha256=O60DFY9kZ8Ytxw-877jyWJZJA-tJomx6oARKlVunMKc,92
58
+ accrete/contrib/ui/static/bulma/sass/base/generic.sass,sha256=7QceRhmURoIc2OrTuk9_P1zsTrezAND9A9aXyDKHjpQ,2640
59
+ accrete/contrib/ui/static/bulma/sass/base/helpers.sass,sha256=gmRKyQiOwdTfG5Di_E-T8k4FiQQqQiKe8hsYAVeU5zw,129
60
+ accrete/contrib/ui/static/bulma/sass/base/minireset.sass,sha256=Aaxm_XrRUKcWcO-fToszK-LwNOLB_ThAm-8Tj7-Q204,709
61
+ accrete/contrib/ui/static/bulma/sass/components/_all.sass,sha256=swyIrK3aYnW0v7so1IBTulxukmmQ86WKC9J7YNJE4VA,246
62
+ accrete/contrib/ui/static/bulma/sass/components/breadcrumb.sass,sha256=eyf_VfgOM8mZG-Lul2ow2p1wXoClFGZUtZ4CmLEljlY,1786
63
+ accrete/contrib/ui/static/bulma/sass/components/card.sass,sha256=Vx3E5MFiN6rZ8vonwBFzpyYYLKVkpHr4gXHhAhoHiM8,2489
64
+ accrete/contrib/ui/static/bulma/sass/components/dropdown.sass,sha256=cs5DgdpQ_5K2DEIuwCsvDjXt-34HpYMhsqoIZ7lNgho,2191
65
+ accrete/contrib/ui/static/bulma/sass/components/level.sass,sha256=GtI_aWZt-guM6jf5t2LGsLqlAZ7WxNMXk2aQd-vWbpE,1487
66
+ accrete/contrib/ui/static/bulma/sass/components/media.sass,sha256=9ggqOlHTbMYGJytzZXWsOa9LmO_oA4YwahQVsQY8OQE,1439
67
+ accrete/contrib/ui/static/bulma/sass/components/menu.sass,sha256=Zh6EFr5CLettxeUxV9JyyIYlcCgNw0xggNyl3az-SSw,1714
68
+ accrete/contrib/ui/static/bulma/sass/components/message.sass,sha256=wY7ZMZ1JF4-2EZu8zRyJhjgOFmHKNota3RV7Q564kJg,3025
69
+ accrete/contrib/ui/static/bulma/sass/components/modal.sass,sha256=d0sJud2cVLk-Kn8XkK2W4NGdVjCNrFLiQq1yDOrJjIs,3000
70
+ accrete/contrib/ui/static/bulma/sass/components/navbar.sass,sha256=qvoj9riGp2Ooyb1Ttl47tRwfLisdcCCttTuoSwyr-Fo,12197
71
+ accrete/contrib/ui/static/bulma/sass/components/pagination.sass,sha256=APAoxjwuMmemalRFU6gWpHKORspdRw0jerFFLgadjXM,4133
72
+ accrete/contrib/ui/static/bulma/sass/components/panel.sass,sha256=P9xBWGWVixVciJBzZugTW1jja2c2qDtOEK3qcCE64fM,3288
73
+ accrete/contrib/ui/static/bulma/sass/components/tabs.sass,sha256=M3PA1vhB5_Pbf_VwDZA_VSdMQfwx0OvW5tPDi3OEWVY,5717
74
+ accrete/contrib/ui/static/bulma/sass/elements/_all.sass,sha256=CCj7qKjAVDGXuEkxadsQfxhJjXkADExsi1QXv7BQOKs,244
75
+ accrete/contrib/ui/static/bulma/sass/elements/box.sass,sha256=PyPt8HmKOS3fyaZgFW8qR8QAaWpups_QYQDG414czMU,690
76
+ accrete/contrib/ui/static/bulma/sass/elements/button.sass,sha256=qWK-rFQsOnvvmxTOKTKITIyrxd_zvfdVIg6x9kpFxLc,10853
77
+ accrete/contrib/ui/static/bulma/sass/elements/container.sass,sha256=DqU4OcdT3JDl9KYb_FgmxNw4MmeHQm1b5cQqdp8sDY4,886
78
+ accrete/contrib/ui/static/bulma/sass/elements/content.sass,sha256=YpIU7RLIWMgpqfcDw6vgyol5402-bE1lDGW1gZ0tnxk,3913
79
+ accrete/contrib/ui/static/bulma/sass/elements/form.sass,sha256=vcpqLt8dOl7aF7zkmUSqjs18z0NZV2hFoWE7L_PnxIY,120
80
+ accrete/contrib/ui/static/bulma/sass/elements/icon.sass,sha256=-gAb-ca6h0KGuJcl6WMifFNOvrHUUVpBWZuCpFEgmf8,1054
81
+ accrete/contrib/ui/static/bulma/sass/elements/image.sass,sha256=xcfN6YeeaextRF-GdBILO62PfOvAwV9BeJz60Sp7A2k,1263
82
+ accrete/contrib/ui/static/bulma/sass/elements/notification.sass,sha256=OIIKz2z6r8Px5rFHZSxEX8xW-Y-oUhdZ3gRIGm80aqQ,1445
83
+ accrete/contrib/ui/static/bulma/sass/elements/other.sass,sha256=J0ldZuqHngkA2kBnUXuM1OahwgNYLYwDzS4ENr34eBQ,521
84
+ accrete/contrib/ui/static/bulma/sass/elements/progress.sass,sha256=rIC4T9-K49KdQd7BzevA-R8bLzxPfTXTUtkBLjWBT2I,2050
85
+ accrete/contrib/ui/static/bulma/sass/elements/table.sass,sha256=-RoW-0cwnHySAmHs39rko6zcbOxplCbMWifNQV3XFSk,3475
86
+ accrete/contrib/ui/static/bulma/sass/elements/tag.sass,sha256=Pzf5MxhDvzeHeR5gQdfYo2Ovq2XECZi45TxtFiK7zt8,3491
87
+ accrete/contrib/ui/static/bulma/sass/elements/title.sass,sha256=4WyvkQPl2ODmzu4nxxM3L3WhMfFTnn49qDMbV8ihIPY,1743
88
+ accrete/contrib/ui/static/bulma/sass/form/_all.sass,sha256=JD8I_JyALl2FKcTrMCaqAptVGAON2EE0Y4apIvTLblo,150
89
+ accrete/contrib/ui/static/bulma/sass/form/checkbox-radio.sass,sha256=PjIm_K3LFI9_4UXkoHDUVTCFACq-bZkTSGevO6t3wWk,407
90
+ accrete/contrib/ui/static/bulma/sass/form/file.sass,sha256=4U_jzJrwY_7I2C12coh0A5lzNQMhLjs_FXfrFMMTwuE,4263
91
+ accrete/contrib/ui/static/bulma/sass/form/input-textarea.sass,sha256=nxv5h90mtvP2j9y9M4ad7NOgbJ3g4slfITxYio5wIzs,1453
92
+ accrete/contrib/ui/static/bulma/sass/form/select.sass,sha256=dsVCoEx7ZAcOruron-9NJntaxGj0vjT0B5oaVuWRvvw,1999
93
+ accrete/contrib/ui/static/bulma/sass/form/shared.sass,sha256=EPbtEQb0LLNgPauElVskuDBYd6_j7dYMYpT2bjzG-3k,1792
94
+ accrete/contrib/ui/static/bulma/sass/form/tools.sass,sha256=X-sx9qUM6LxrF9Mfs-BUHqVaWxR9eLErwIeXsp36OI0,4674
95
+ accrete/contrib/ui/static/bulma/sass/grid/_all.sass,sha256=o0MTz04TGgYZsFRY3BYhJ-li4c9a8HJ55iEDWMnA9Dg,69
96
+ accrete/contrib/ui/static/bulma/sass/grid/columns.sass,sha256=-qtEmt4uMkfPrP-OVsjUr-vk0aUx5JkSgGOsDvIOq8U,14019
97
+ accrete/contrib/ui/static/bulma/sass/grid/tiles.sass,sha256=_u2-5F8MPCH-aLs_yn96Fm802o66P_3cxxPqUTYzsas,815
98
+ accrete/contrib/ui/static/bulma/sass/helpers/_all.sass,sha256=mspaStrWCZVIOK97wBWqcUBToT_IHs4zVE6gKH1jKf8,202
99
+ accrete/contrib/ui/static/bulma/sass/helpers/color.sass,sha256=9zpINzUVwkcqtzd7Iy22qGiSsy4k7uK1eZKs7Cnt0fg,1096
100
+ accrete/contrib/ui/static/bulma/sass/helpers/flexbox.sass,sha256=WCLzF__i28FKBlUob7MIyNZLxkmUCYqOGMyIJ5D42c8,1317
101
+ accrete/contrib/ui/static/bulma/sass/helpers/float.sass,sha256=LvgcD-EnUVYtX9crGLcfEkqFjz-_pW3ry1RiYq5oMPE,142
102
+ accrete/contrib/ui/static/bulma/sass/helpers/other.sass,sha256=sPp14QsStqIYE5TWYwATRJWHU5goUhCD8tXw5It3Yjo,241
103
+ accrete/contrib/ui/static/bulma/sass/helpers/overflow.sass,sha256=bJWwUrSO78nF1U7zfHTMLmXLzK1ASm9x_14E4EOFjJk,42
104
+ accrete/contrib/ui/static/bulma/sass/helpers/position.sass,sha256=P3Y_CAewnU7vkNXg9kXcMv5QK-MEUQcvbnhsq6gvatA,108
105
+ accrete/contrib/ui/static/bulma/sass/helpers/spacing.sass,sha256=VarRaqUlRGwxLKLrM2C64_CDKJHq9uUDC0nl09hFcd4,1164
106
+ accrete/contrib/ui/static/bulma/sass/helpers/typography.sass,sha256=jxmrOpPCULQvjyMEst9vI7elCVblePubwucTSu2WzoM,2474
107
+ accrete/contrib/ui/static/bulma/sass/helpers/visibility.sass,sha256=z3ujrXK_lbo7W0-f6tnEAq32gATp0Vw-_lEeGlmqzQE,2448
108
+ accrete/contrib/ui/static/bulma/sass/layout/_all.sass,sha256=pdlXJ4DHiTjnKeGR13itYoWRX1JAPzfqa587wsGVM38,87
109
+ accrete/contrib/ui/static/bulma/sass/layout/footer.sass,sha256=FImSXqPHUmhf3LtmpwS105GZZV7DCjw9qtutyKNgvOU,293
110
+ accrete/contrib/ui/static/bulma/sass/layout/hero.sass,sha256=_PyfQ8d_h8tDZ5763dQOQp4kSI5tAAYsHq7eRnflWW0,3651
111
+ accrete/contrib/ui/static/bulma/sass/layout/section.sass,sha256=XCkAZsVNRqZNaw4Te_7w-qzwqWqIx0WzgaYsklfHjZA,433
112
+ accrete/contrib/ui/static/bulma/sass/utilities/_all.sass,sha256=BI_98i8_hoVPXCNqf77XoPR7lKXZLbnRs0YU5foyvvc,170
113
+ accrete/contrib/ui/static/bulma/sass/utilities/animations.sass,sha256=2Q8oYwu5oYTIyp6ESR-VTlrq_1al6_TA0N2mKVik0ZE,119
114
+ accrete/contrib/ui/static/bulma/sass/utilities/controls.sass,sha256=-T4m-Z91J8e5WPEtmATYiDBINS_Xr6Op_JCHIKsj3pw,1296
115
+ accrete/contrib/ui/static/bulma/sass/utilities/derived-variables.sass,sha256=K925vPn0BYkbljaHIoxI3G3xgnck5Tp81JFx_xx8wcE,4005
116
+ accrete/contrib/ui/static/bulma/sass/utilities/extends.sass,sha256=jb5Ipy_k6hBSFvgMXtiQGGI3YRDKIUTtELhM_gMWlBY,179
117
+ accrete/contrib/ui/static/bulma/sass/utilities/functions.sass,sha256=tRNFJ9yQTS-GZ6ouJ7EIWiFITL7irYR7srzKwzacvUA,4896
118
+ accrete/contrib/ui/static/bulma/sass/utilities/initial-variables.sass,sha256=JXNQHoF4YlBTUW6WSJ14_38SA9lbk6VkouzYURmlV8g,2691
119
+ accrete/contrib/ui/static/bulma/sass/utilities/mixins.sass,sha256=oijSh2f1DPqod0W5op9iVEAFbC1huMqBIJmnHRx3exc,6291
120
+ accrete/contrib/ui/static/css/accrete.css,sha256=XD_D3iOxgdvPbrCUjDcKZRvffi0JSz1UpRjsD2HvT90,252592
121
+ accrete/contrib/ui/static/css/accrete.css.bak,sha256=2RErGa8_tm8lFSamfW3UfqPgEVkPDejk2fh8IidW-B0,2359
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
124
+ accrete/contrib/ui/static/css/icons.css,sha256=3CsD9CLxOWHwQG6qrIAGc-28o89ef9dwTMaN3syJER8,3462
125
+ accrete/contrib/ui/static/icons/Logo.svg,sha256=hGZuxrAa-LRpFavFiF8Lnc7X9OQcqmb6Xl_dxx-27hM,1861
126
+ accrete/contrib/ui/static/icons/accrete.svg,sha256=CWHJKIgk3hxL7xIaFSz2j1cK-eF1TroCbjcF58bgOIs,1024
127
+ accrete/contrib/ui/static/js/filter.js,sha256=C95iOMmpEf6VEk2fyTE2XnTZNtVelTw0L9POnA37Xso,21454
128
+ accrete/contrib/ui/static/js/list.js,sha256=OX_81ifRmawE-1QBU5Qpq_E6sHiiNwIPleETAn9EOJw,4280
129
+ accrete/contrib/ui/static/js/navbar.js,sha256=9QGZfPgGWjCBZhZhrRf983hoPnRlwQP-Pl73c2vISYs,628
130
+ accrete/contrib/ui/static/js/utils.js,sha256=6RKh3EJ57gx5UIjBcSaeZEs7lZdLvyYT9VAQ-WqlKSk,173
131
+ accrete/contrib/ui/templates/django/forms/widgets/attrs.html,sha256=zNxjU4Ta_eWZkh1WhrF_VIwNZ0lZyl980gSSijUK51k,195
132
+ accrete/contrib/ui/templates/django/forms/widgets/email.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
133
+ accrete/contrib/ui/templates/django/forms/widgets/file.html,sha256=J1NmXmQTp6IU48K-zRdLeYl-1Tpavx6ZAo3cPIP9Y6Y,755
134
+ accrete/contrib/ui/templates/django/forms/widgets/input.html,sha256=CRu81kTsbPwis7NknCv6i7EQkOwexR9rURaRpoGHBek,248
135
+ accrete/contrib/ui/templates/django/forms/widgets/select.html,sha256=jT_UnHizHfdWTdJoSxjcIqTiR7NbVBA4bBSvkuDPRtw,394
136
+ accrete/contrib/ui/templates/django/forms/widgets/text.html,sha256=MSmLlQc7PsPoDLVtTOOiWNprrsPriNr712yFxaHyDIo,47
137
+ accrete/contrib/ui/templates/django/forms/widgets/textarea.html,sha256=c9BTedqb3IkXLyVYd0p9pR8DFnsXCNGoxVBWZTk_Fic,278
138
+ accrete/contrib/ui/templates/ui/detail.html,sha256=AffbViFC9VtkUyMwEToFKhV_Oh2TM_qPJDSWFVhJAjg,469
139
+ accrete/contrib/ui/templates/ui/form.html,sha256=HpcZCDU_ur_Zf5gpnH_F8OV6qfOYPl6Ecqg6w5RIayQ,405
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
144
+ accrete/contrib/ui/templates/ui/partials/form_errors.html,sha256=1_TQvTdiejsn-43YSyp2YfnP52P-MFYb-HGY0DLm4oA,991
145
+ accrete/contrib/ui/templates/ui/partials/form_modal.html,sha256=FFDfI5qjOCUBSGqDjBXa8tcqN2q94wOOCNFDaiyplHQ,1032
146
+ accrete/contrib/ui/templates/ui/partials/header.html,sha256=wqdeky2iBgRDcobGhBAKDQv8wQ6SBTUOos8s_aN7UG0,2629
147
+ accrete/contrib/ui/templates/ui/partials/onchange_form.html,sha256=K5twTGqRUW1iM2dGtdWntjsJvJVo5EIzKxX2HK-H1yw,160
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
154
+ accrete/contrib/ui/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
155
+ accrete/contrib/ui/templatetags/accrete_ui.py,sha256=LWfxxk1JDhJanbcjYNSSW1-MNvEN8etqYBBvgKKMFIs,2550
156
+ accrete/contrib/user/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
157
+ accrete/contrib/user/admin.py,sha256=YS4iApli7XUaIl9GsEJxys2j8sepX0by88omYHjff-E,85
158
+ accrete/contrib/user/apps.py,sha256=oHDrAiHf-G57mZLyxqGJzRY2DbPprGFD-QgyVJG_ruI,156
159
+ accrete/contrib/user/forms.py,sha256=FDfWiPld5EQMTHCCHTIhDdDjEU0zUBR3jo7l04kfn1c,683
160
+ accrete/contrib/user/middleware.py,sha256=qblcujwJsthopagyT-hPFq4HsMyGt-VvqZw5TQopBjk,403
161
+ accrete/contrib/user/models.py,sha256=xbDt2z03KzyJbd9mea2hRedsdddcn4614cckr_frY9s,3876
162
+ accrete/contrib/user/tests.py,sha256=mrbGGRNg5jwbTJtWWa7zSKdDyeB4vmgZCRc2nk6VY-g,60
163
+ accrete/contrib/user/urls.py,sha256=pTjnYuSHx3Mlx87uDULoWO1gB0moxTQG7YwXHsa-FTk,316
164
+ accrete/contrib/user/views.py,sha256=m-nmRSL3XdeM_9UD_7jlEg_dnPIgDoT6qf0uhPTMI40,1978
165
+ accrete/contrib/user/locale/de/LC_MESSAGES/django.mo,sha256=p3rgUg6WltAVIMkQsjvjBqTsd_usLhSr1GH4Cyltc2c,433
166
+ accrete/contrib/user/locale/de/LC_MESSAGES/django.po,sha256=f_Nxpo3HTm2L3f3zoHLfeWsZ-4IQp_EEVSku6TCZSvw,1870
167
+ accrete/contrib/user/migrations/0001_initial.py,sha256=JWfM9PcMDfkJUdCjLWuWieGs6643qP0KdbCyr5uAZoY,2950
168
+ accrete/contrib/user/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
169
+ accrete/contrib/user/templates/user/accrete_navbar_end.html,sha256=PmdfM6LuYdhVbDJ62DcmwU0F3OH8KSwKzjXRc282BJk,343
170
+ accrete/contrib/user/templates/user/login.html,sha256=qKUqF5WCkWPrbwQMaa05Ou7zkM_CeVrJzHsjsDWNPhQ,1644
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
173
+ accrete/contrib/user_registration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
174
+ accrete/contrib/user_registration/admin.py,sha256=kwmGTsg4Hii-lsw9-UaJG7AhQ4k4SPi48GSrtpZ4YR4,119
175
+ accrete/contrib/user_registration/apps.py,sha256=mYu3fuuubfjImeJHk4D_Wd6Edw2r3oUNXGcFbAkhir4,181
176
+ accrete/contrib/user_registration/config.py,sha256=wrZuZY5ed9dCFKp5W2iRUAoHN9xAoetEU8BuuKSofRg,949
177
+ accrete/contrib/user_registration/forms.py,sha256=rTDcpVlGPDyfTRIQquJr4hNshmJEOplYDwOT782xLys,3281
178
+ accrete/contrib/user_registration/models.py,sha256=bxDQ_UTeLMmU6tjNfwVLenWuJu_WNZEm3-uPNeOAidk,398
179
+ accrete/contrib/user_registration/tests.py,sha256=mrbGGRNg5jwbTJtWWa7zSKdDyeB4vmgZCRc2nk6VY-g,60
180
+ accrete/contrib/user_registration/urls.py,sha256=lC1uHBHY3lgJVooZaMx7quTnqDsG01JQq_XRXQVjz3o,382
181
+ accrete/contrib/user_registration/views.py,sha256=sUW2QttAFjJvqZVsTrvGpZQ0qVham61zdVok9n-6pHU,3060
182
+ accrete/contrib/user_registration/migrations/0001_initial.py,sha256=XKflQ2gPgKjW28LgP_nDX6vgClxuZLJ6xWVppbEgX8M,896
183
+ accrete/contrib/user_registration/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
184
+ accrete/contrib/user_registration/templates/user_registration/registration.html,sha256=E3jcS4WwlEowzGrnIQ35B-tTrkEILBbqQrxDx2f6lys,2079
185
+ accrete/contrib/user_registration/templates/user_registration/mail_templates/confirmation_mail.html,sha256=5UkpGUrDAazrr_gKguOnOykr77a2FLgD2gnvUxzHfyg,192
186
+ accrete/migrations/0001_initial.py,sha256=azThbc8otEhxJwo8BIgOt5eC30mxXhKJLBAazZFe3BA,4166
187
+ accrete/migrations/0002_initial.py,sha256=dFOM7kdHlx7pVAh8cTDlZMtciN4O9Z547HAzEKnygZE,1628
188
+ accrete/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
189
+ accrete/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
190
+ accrete/utils/dates.py,sha256=XI58CqabLCC-Sg6qo5TPWh-pHuuZfDdGDU6KQeAMlGo,1066
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,,