accrete 0.0.17__py3-none-any.whl → 0.0.19__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 (93) hide show
  1. accrete/contrib/ui/__init__.py +1 -0
  2. accrete/contrib/ui/filter.py +2 -1
  3. accrete/contrib/ui/helper.py +11 -1
  4. accrete/contrib/ui/static/bulma/LICENSE +21 -0
  5. accrete/contrib/ui/static/bulma/README.md +139 -0
  6. accrete/contrib/ui/static/bulma/bulma.sass +10 -0
  7. accrete/contrib/ui/static/bulma/css/bulma-rtl.css +11851 -0
  8. accrete/contrib/ui/static/bulma/css/bulma-rtl.css.map +1 -0
  9. accrete/contrib/ui/static/bulma/css/bulma-rtl.min.css +1 -0
  10. accrete/contrib/ui/static/bulma/css/bulma.css +11851 -0
  11. accrete/contrib/ui/static/bulma/css/bulma.css.map +1 -0
  12. accrete/contrib/ui/static/bulma/css/bulma.min.css +1 -0
  13. accrete/contrib/ui/static/bulma/package.json +56 -0
  14. accrete/contrib/ui/static/bulma/sass/base/_all.sass +6 -0
  15. accrete/contrib/ui/static/bulma/sass/base/animations.sass +5 -0
  16. accrete/contrib/ui/static/bulma/sass/base/generic.sass +145 -0
  17. accrete/contrib/ui/static/bulma/sass/base/helpers.sass +1 -0
  18. accrete/contrib/ui/static/bulma/sass/base/minireset.sass +79 -0
  19. accrete/contrib/ui/static/bulma/sass/components/_all.sass +15 -0
  20. accrete/contrib/ui/static/bulma/sass/components/breadcrumb.sass +77 -0
  21. accrete/contrib/ui/static/bulma/sass/components/card.sass +103 -0
  22. accrete/contrib/ui/static/bulma/sass/components/dropdown.sass +83 -0
  23. accrete/contrib/ui/static/bulma/sass/components/level.sass +79 -0
  24. accrete/contrib/ui/static/bulma/sass/components/media.sass +59 -0
  25. accrete/contrib/ui/static/bulma/sass/components/menu.sass +59 -0
  26. accrete/contrib/ui/static/bulma/sass/components/message.sass +101 -0
  27. accrete/contrib/ui/static/bulma/sass/components/modal.sass +117 -0
  28. accrete/contrib/ui/static/bulma/sass/components/navbar.sass +446 -0
  29. accrete/contrib/ui/static/bulma/sass/components/pagination.sass +167 -0
  30. accrete/contrib/ui/static/bulma/sass/components/panel.sass +121 -0
  31. accrete/contrib/ui/static/bulma/sass/components/tabs.sass +176 -0
  32. accrete/contrib/ui/static/bulma/sass/elements/_all.sass +16 -0
  33. accrete/contrib/ui/static/bulma/sass/elements/box.sass +26 -0
  34. accrete/contrib/ui/static/bulma/sass/elements/button.sass +357 -0
  35. accrete/contrib/ui/static/bulma/sass/elements/container.sass +29 -0
  36. accrete/contrib/ui/static/bulma/sass/elements/content.sass +162 -0
  37. accrete/contrib/ui/static/bulma/sass/elements/form.sass +1 -0
  38. accrete/contrib/ui/static/bulma/sass/elements/icon.sass +46 -0
  39. accrete/contrib/ui/static/bulma/sass/elements/image.sass +73 -0
  40. accrete/contrib/ui/static/bulma/sass/elements/notification.sass +52 -0
  41. accrete/contrib/ui/static/bulma/sass/elements/other.sass +31 -0
  42. accrete/contrib/ui/static/bulma/sass/elements/progress.sass +73 -0
  43. accrete/contrib/ui/static/bulma/sass/elements/table.sass +134 -0
  44. accrete/contrib/ui/static/bulma/sass/elements/tag.sass +140 -0
  45. accrete/contrib/ui/static/bulma/sass/elements/title.sass +70 -0
  46. accrete/contrib/ui/static/bulma/sass/form/_all.sass +9 -0
  47. accrete/contrib/ui/static/bulma/sass/form/checkbox-radio.sass +22 -0
  48. accrete/contrib/ui/static/bulma/sass/form/file.sass +184 -0
  49. accrete/contrib/ui/static/bulma/sass/form/input-textarea.sass +66 -0
  50. accrete/contrib/ui/static/bulma/sass/form/select.sass +88 -0
  51. accrete/contrib/ui/static/bulma/sass/form/shared.sass +60 -0
  52. accrete/contrib/ui/static/bulma/sass/form/tools.sass +215 -0
  53. accrete/contrib/ui/static/bulma/sass/grid/_all.sass +5 -0
  54. accrete/contrib/ui/static/bulma/sass/grid/columns.sass +513 -0
  55. accrete/contrib/ui/static/bulma/sass/grid/tiles.sass +36 -0
  56. accrete/contrib/ui/static/bulma/sass/helpers/_all.sass +12 -0
  57. accrete/contrib/ui/static/bulma/sass/helpers/color.sass +39 -0
  58. accrete/contrib/ui/static/bulma/sass/helpers/flexbox.sass +35 -0
  59. accrete/contrib/ui/static/bulma/sass/helpers/float.sass +10 -0
  60. accrete/contrib/ui/static/bulma/sass/helpers/other.sass +14 -0
  61. accrete/contrib/ui/static/bulma/sass/helpers/overflow.sass +2 -0
  62. accrete/contrib/ui/static/bulma/sass/helpers/position.sass +7 -0
  63. accrete/contrib/ui/static/bulma/sass/helpers/spacing.sass +31 -0
  64. accrete/contrib/ui/static/bulma/sass/helpers/typography.sass +103 -0
  65. accrete/contrib/ui/static/bulma/sass/helpers/visibility.sass +122 -0
  66. accrete/contrib/ui/static/bulma/sass/layout/_all.sass +6 -0
  67. accrete/contrib/ui/static/bulma/sass/layout/footer.sass +11 -0
  68. accrete/contrib/ui/static/bulma/sass/layout/hero.sass +153 -0
  69. accrete/contrib/ui/static/bulma/sass/layout/section.sass +17 -0
  70. accrete/contrib/ui/static/bulma/sass/utilities/_all.sass +9 -0
  71. accrete/contrib/ui/static/bulma/sass/utilities/animations.sass +1 -0
  72. accrete/contrib/ui/static/bulma/sass/utilities/controls.sass +49 -0
  73. accrete/contrib/ui/static/bulma/sass/utilities/derived-variables.sass +114 -0
  74. accrete/contrib/ui/static/bulma/sass/utilities/extends.sass +25 -0
  75. accrete/contrib/ui/static/bulma/sass/utilities/functions.sass +135 -0
  76. accrete/contrib/ui/static/bulma/sass/utilities/initial-variables.sass +79 -0
  77. accrete/contrib/ui/static/bulma/sass/utilities/mixins.sass +303 -0
  78. accrete/contrib/ui/static/css/accrete.css +10346 -76
  79. accrete/contrib/ui/static/css/accrete.css.bak +156 -0
  80. accrete/contrib/ui/static/css/accrete.css.map +1 -0
  81. accrete/contrib/ui/static/css/accrete.scss +153 -0
  82. accrete/contrib/ui/templates/ui/layout.html +3 -2
  83. accrete/contrib/ui/templates/ui/partials/filter.html +1 -1
  84. accrete/contrib/ui/templates/ui/partials/header.html +1 -1
  85. accrete/contrib/ui/templates/ui/table.html +8 -4
  86. accrete/contrib/user/templates/user/user_detail.html +11 -3
  87. accrete/contrib/user/templates/user/user_form.html +1 -3
  88. accrete/contrib/user/views.py +3 -1
  89. {accrete-0.0.17.dist-info → accrete-0.0.19.dist-info}/METADATA +1 -1
  90. accrete-0.0.19.dist-info/RECORD +188 -0
  91. accrete-0.0.17.dist-info/RECORD +0 -111
  92. {accrete-0.0.17.dist-info → accrete-0.0.19.dist-info}/WHEEL +0 -0
  93. {accrete-0.0.17.dist-info → accrete-0.0.19.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,188 @@
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=j5VFl50Zma6CdyFWahkNeimUlDRzu8WkHB4rGWy0hhA,406
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=M3BCc3Wsbpymweny5caBe6pUENwjPgfMGdLBKWfwkYw,235
19
+ accrete/contrib/sequence/models.py,sha256=zXK0aCdsDiXQU_51UZBElL6DUvnMdKEAITxPX57NNEI,886
20
+ accrete/contrib/sequence/queries.py,sha256=ykSxbbYjI2n3pjZskNXBGTJk0ca7H0NFzFP-nZlVDQU,684
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=layN2jBi-MaRYqZW5AzXA_SVyeHHOZjy-HWGOj3S8I8,232
36
+ accrete/contrib/ui/admin.py,sha256=suMo4x8I3JBxAFBVIdE-5qnqZ6JAZV0FESABHOSc-vg,63
37
+ accrete/contrib/ui/apps.py,sha256=E0ao2ox6PQ3ldfeR17FXJUUJuGiWjm2DPCxHbPXGzls,152
38
+ accrete/contrib/ui/filter.py,sha256=Qksg_27NTBXTQeLkkCMaOm-sETSmcOkwMO6d7es-24c,12146
39
+ accrete/contrib/ui/helper.py,sha256=UIWSig9XUJyluHi9vyWO7RQyqlyh30jgf2HRJ3VqcYA,13603
40
+ accrete/contrib/ui/tests.py,sha256=mrbGGRNg5jwbTJtWWa7zSKdDyeB4vmgZCRc2nk6VY-g,60
41
+ accrete/contrib/ui/urls.py,sha256=TUBlz_CGs9InTZoxM78GSnucA73I8knoh_obt12RUHM,186
42
+ accrete/contrib/ui/views.py,sha256=WpBKMsxFFG8eG4IN7TW_TPE6i3OFF7gnLDTK7JMKti8,191
43
+ accrete/contrib/ui/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
44
+ accrete/contrib/ui/static/bulma/LICENSE,sha256=EOzxUuYjW9jT_euIkYJyuba6uVd1AGnbmvMBLMM4P34,1080
45
+ accrete/contrib/ui/static/bulma/README.md,sha256=XBP0X5klxpH8lCJMhbU7UpUf00YL5q9q44d2QvXtYdc,12459
46
+ accrete/contrib/ui/static/bulma/bulma.sass,sha256=13QGD_QJNcvfz2a9mVdoPe-hUnVmj1p88Pto_nzZ6NE,300
47
+ accrete/contrib/ui/static/bulma/package.json,sha256=y9jcazjp6S9F5MTtotR4GQMVLX6_SsiXkzdjh8xEsm4,1761
48
+ accrete/contrib/ui/static/bulma/css/bulma-rtl.css,sha256=zCY7Ue03YZSS9MBM2m7B06L6Sn6Cz9fU-vs5b6uP32s,245633
49
+ accrete/contrib/ui/static/bulma/css/bulma-rtl.css.map,sha256=-N1D64HNJigvKDP3_THRtvVtQWDrv1nG1U-tH9StVeY,98598
50
+ accrete/contrib/ui/static/bulma/css/bulma-rtl.min.css,sha256=qxwTCIpQbNE5diPfI0S_7qLHNxo2KFy4ce819fLfCxs,207445
51
+ accrete/contrib/ui/static/bulma/css/bulma.css,sha256=R4DSq1v8tU59HJzLx01ab7PKiTwJXbdTb6NGLxZo3js,245486
52
+ accrete/contrib/ui/static/bulma/css/bulma.css.map,sha256=d5jTw3lGRj3XSJxccMkYqgEl4_bUlKpjyidt_sUWAiQ,98583
53
+ accrete/contrib/ui/static/bulma/css/bulma.min.css,sha256=rTpdO0HXBCNpreAHcu6tB2Ppg515Vo-5GtYSsnNLz-8,207302
54
+ accrete/contrib/ui/static/bulma/sass/base/_all.sass,sha256=PeeNu_b4PamJYrlzxEg47J23HNJJCdSEVkay84u8kb8,94
55
+ accrete/contrib/ui/static/bulma/sass/base/animations.sass,sha256=O60DFY9kZ8Ytxw-877jyWJZJA-tJomx6oARKlVunMKc,92
56
+ accrete/contrib/ui/static/bulma/sass/base/generic.sass,sha256=7QceRhmURoIc2OrTuk9_P1zsTrezAND9A9aXyDKHjpQ,2640
57
+ accrete/contrib/ui/static/bulma/sass/base/helpers.sass,sha256=gmRKyQiOwdTfG5Di_E-T8k4FiQQqQiKe8hsYAVeU5zw,129
58
+ accrete/contrib/ui/static/bulma/sass/base/minireset.sass,sha256=Aaxm_XrRUKcWcO-fToszK-LwNOLB_ThAm-8Tj7-Q204,709
59
+ accrete/contrib/ui/static/bulma/sass/components/_all.sass,sha256=swyIrK3aYnW0v7so1IBTulxukmmQ86WKC9J7YNJE4VA,246
60
+ accrete/contrib/ui/static/bulma/sass/components/breadcrumb.sass,sha256=eyf_VfgOM8mZG-Lul2ow2p1wXoClFGZUtZ4CmLEljlY,1786
61
+ accrete/contrib/ui/static/bulma/sass/components/card.sass,sha256=Vx3E5MFiN6rZ8vonwBFzpyYYLKVkpHr4gXHhAhoHiM8,2489
62
+ accrete/contrib/ui/static/bulma/sass/components/dropdown.sass,sha256=cs5DgdpQ_5K2DEIuwCsvDjXt-34HpYMhsqoIZ7lNgho,2191
63
+ accrete/contrib/ui/static/bulma/sass/components/level.sass,sha256=GtI_aWZt-guM6jf5t2LGsLqlAZ7WxNMXk2aQd-vWbpE,1487
64
+ accrete/contrib/ui/static/bulma/sass/components/media.sass,sha256=9ggqOlHTbMYGJytzZXWsOa9LmO_oA4YwahQVsQY8OQE,1439
65
+ accrete/contrib/ui/static/bulma/sass/components/menu.sass,sha256=Zh6EFr5CLettxeUxV9JyyIYlcCgNw0xggNyl3az-SSw,1714
66
+ accrete/contrib/ui/static/bulma/sass/components/message.sass,sha256=wY7ZMZ1JF4-2EZu8zRyJhjgOFmHKNota3RV7Q564kJg,3025
67
+ accrete/contrib/ui/static/bulma/sass/components/modal.sass,sha256=d0sJud2cVLk-Kn8XkK2W4NGdVjCNrFLiQq1yDOrJjIs,3000
68
+ accrete/contrib/ui/static/bulma/sass/components/navbar.sass,sha256=qvoj9riGp2Ooyb1Ttl47tRwfLisdcCCttTuoSwyr-Fo,12197
69
+ accrete/contrib/ui/static/bulma/sass/components/pagination.sass,sha256=APAoxjwuMmemalRFU6gWpHKORspdRw0jerFFLgadjXM,4133
70
+ accrete/contrib/ui/static/bulma/sass/components/panel.sass,sha256=P9xBWGWVixVciJBzZugTW1jja2c2qDtOEK3qcCE64fM,3288
71
+ accrete/contrib/ui/static/bulma/sass/components/tabs.sass,sha256=M3PA1vhB5_Pbf_VwDZA_VSdMQfwx0OvW5tPDi3OEWVY,5717
72
+ accrete/contrib/ui/static/bulma/sass/elements/_all.sass,sha256=CCj7qKjAVDGXuEkxadsQfxhJjXkADExsi1QXv7BQOKs,244
73
+ accrete/contrib/ui/static/bulma/sass/elements/box.sass,sha256=PyPt8HmKOS3fyaZgFW8qR8QAaWpups_QYQDG414czMU,690
74
+ accrete/contrib/ui/static/bulma/sass/elements/button.sass,sha256=qWK-rFQsOnvvmxTOKTKITIyrxd_zvfdVIg6x9kpFxLc,10853
75
+ accrete/contrib/ui/static/bulma/sass/elements/container.sass,sha256=DqU4OcdT3JDl9KYb_FgmxNw4MmeHQm1b5cQqdp8sDY4,886
76
+ accrete/contrib/ui/static/bulma/sass/elements/content.sass,sha256=YpIU7RLIWMgpqfcDw6vgyol5402-bE1lDGW1gZ0tnxk,3913
77
+ accrete/contrib/ui/static/bulma/sass/elements/form.sass,sha256=vcpqLt8dOl7aF7zkmUSqjs18z0NZV2hFoWE7L_PnxIY,120
78
+ accrete/contrib/ui/static/bulma/sass/elements/icon.sass,sha256=-gAb-ca6h0KGuJcl6WMifFNOvrHUUVpBWZuCpFEgmf8,1054
79
+ accrete/contrib/ui/static/bulma/sass/elements/image.sass,sha256=xcfN6YeeaextRF-GdBILO62PfOvAwV9BeJz60Sp7A2k,1263
80
+ accrete/contrib/ui/static/bulma/sass/elements/notification.sass,sha256=OIIKz2z6r8Px5rFHZSxEX8xW-Y-oUhdZ3gRIGm80aqQ,1445
81
+ accrete/contrib/ui/static/bulma/sass/elements/other.sass,sha256=J0ldZuqHngkA2kBnUXuM1OahwgNYLYwDzS4ENr34eBQ,521
82
+ accrete/contrib/ui/static/bulma/sass/elements/progress.sass,sha256=rIC4T9-K49KdQd7BzevA-R8bLzxPfTXTUtkBLjWBT2I,2050
83
+ accrete/contrib/ui/static/bulma/sass/elements/table.sass,sha256=-RoW-0cwnHySAmHs39rko6zcbOxplCbMWifNQV3XFSk,3475
84
+ accrete/contrib/ui/static/bulma/sass/elements/tag.sass,sha256=Pzf5MxhDvzeHeR5gQdfYo2Ovq2XECZi45TxtFiK7zt8,3491
85
+ accrete/contrib/ui/static/bulma/sass/elements/title.sass,sha256=4WyvkQPl2ODmzu4nxxM3L3WhMfFTnn49qDMbV8ihIPY,1743
86
+ accrete/contrib/ui/static/bulma/sass/form/_all.sass,sha256=JD8I_JyALl2FKcTrMCaqAptVGAON2EE0Y4apIvTLblo,150
87
+ accrete/contrib/ui/static/bulma/sass/form/checkbox-radio.sass,sha256=PjIm_K3LFI9_4UXkoHDUVTCFACq-bZkTSGevO6t3wWk,407
88
+ accrete/contrib/ui/static/bulma/sass/form/file.sass,sha256=4U_jzJrwY_7I2C12coh0A5lzNQMhLjs_FXfrFMMTwuE,4263
89
+ accrete/contrib/ui/static/bulma/sass/form/input-textarea.sass,sha256=nxv5h90mtvP2j9y9M4ad7NOgbJ3g4slfITxYio5wIzs,1453
90
+ accrete/contrib/ui/static/bulma/sass/form/select.sass,sha256=dsVCoEx7ZAcOruron-9NJntaxGj0vjT0B5oaVuWRvvw,1999
91
+ accrete/contrib/ui/static/bulma/sass/form/shared.sass,sha256=EPbtEQb0LLNgPauElVskuDBYd6_j7dYMYpT2bjzG-3k,1792
92
+ accrete/contrib/ui/static/bulma/sass/form/tools.sass,sha256=X-sx9qUM6LxrF9Mfs-BUHqVaWxR9eLErwIeXsp36OI0,4674
93
+ accrete/contrib/ui/static/bulma/sass/grid/_all.sass,sha256=o0MTz04TGgYZsFRY3BYhJ-li4c9a8HJ55iEDWMnA9Dg,69
94
+ accrete/contrib/ui/static/bulma/sass/grid/columns.sass,sha256=-qtEmt4uMkfPrP-OVsjUr-vk0aUx5JkSgGOsDvIOq8U,14019
95
+ accrete/contrib/ui/static/bulma/sass/grid/tiles.sass,sha256=_u2-5F8MPCH-aLs_yn96Fm802o66P_3cxxPqUTYzsas,815
96
+ accrete/contrib/ui/static/bulma/sass/helpers/_all.sass,sha256=mspaStrWCZVIOK97wBWqcUBToT_IHs4zVE6gKH1jKf8,202
97
+ accrete/contrib/ui/static/bulma/sass/helpers/color.sass,sha256=9zpINzUVwkcqtzd7Iy22qGiSsy4k7uK1eZKs7Cnt0fg,1096
98
+ accrete/contrib/ui/static/bulma/sass/helpers/flexbox.sass,sha256=WCLzF__i28FKBlUob7MIyNZLxkmUCYqOGMyIJ5D42c8,1317
99
+ accrete/contrib/ui/static/bulma/sass/helpers/float.sass,sha256=LvgcD-EnUVYtX9crGLcfEkqFjz-_pW3ry1RiYq5oMPE,142
100
+ accrete/contrib/ui/static/bulma/sass/helpers/other.sass,sha256=sPp14QsStqIYE5TWYwATRJWHU5goUhCD8tXw5It3Yjo,241
101
+ accrete/contrib/ui/static/bulma/sass/helpers/overflow.sass,sha256=bJWwUrSO78nF1U7zfHTMLmXLzK1ASm9x_14E4EOFjJk,42
102
+ accrete/contrib/ui/static/bulma/sass/helpers/position.sass,sha256=P3Y_CAewnU7vkNXg9kXcMv5QK-MEUQcvbnhsq6gvatA,108
103
+ accrete/contrib/ui/static/bulma/sass/helpers/spacing.sass,sha256=VarRaqUlRGwxLKLrM2C64_CDKJHq9uUDC0nl09hFcd4,1164
104
+ accrete/contrib/ui/static/bulma/sass/helpers/typography.sass,sha256=jxmrOpPCULQvjyMEst9vI7elCVblePubwucTSu2WzoM,2474
105
+ accrete/contrib/ui/static/bulma/sass/helpers/visibility.sass,sha256=z3ujrXK_lbo7W0-f6tnEAq32gATp0Vw-_lEeGlmqzQE,2448
106
+ accrete/contrib/ui/static/bulma/sass/layout/_all.sass,sha256=pdlXJ4DHiTjnKeGR13itYoWRX1JAPzfqa587wsGVM38,87
107
+ accrete/contrib/ui/static/bulma/sass/layout/footer.sass,sha256=FImSXqPHUmhf3LtmpwS105GZZV7DCjw9qtutyKNgvOU,293
108
+ accrete/contrib/ui/static/bulma/sass/layout/hero.sass,sha256=_PyfQ8d_h8tDZ5763dQOQp4kSI5tAAYsHq7eRnflWW0,3651
109
+ accrete/contrib/ui/static/bulma/sass/layout/section.sass,sha256=XCkAZsVNRqZNaw4Te_7w-qzwqWqIx0WzgaYsklfHjZA,433
110
+ accrete/contrib/ui/static/bulma/sass/utilities/_all.sass,sha256=BI_98i8_hoVPXCNqf77XoPR7lKXZLbnRs0YU5foyvvc,170
111
+ accrete/contrib/ui/static/bulma/sass/utilities/animations.sass,sha256=2Q8oYwu5oYTIyp6ESR-VTlrq_1al6_TA0N2mKVik0ZE,119
112
+ accrete/contrib/ui/static/bulma/sass/utilities/controls.sass,sha256=-T4m-Z91J8e5WPEtmATYiDBINS_Xr6Op_JCHIKsj3pw,1296
113
+ accrete/contrib/ui/static/bulma/sass/utilities/derived-variables.sass,sha256=K925vPn0BYkbljaHIoxI3G3xgnck5Tp81JFx_xx8wcE,4005
114
+ accrete/contrib/ui/static/bulma/sass/utilities/extends.sass,sha256=jb5Ipy_k6hBSFvgMXtiQGGI3YRDKIUTtELhM_gMWlBY,179
115
+ accrete/contrib/ui/static/bulma/sass/utilities/functions.sass,sha256=tRNFJ9yQTS-GZ6ouJ7EIWiFITL7irYR7srzKwzacvUA,4896
116
+ accrete/contrib/ui/static/bulma/sass/utilities/initial-variables.sass,sha256=JXNQHoF4YlBTUW6WSJ14_38SA9lbk6VkouzYURmlV8g,2691
117
+ accrete/contrib/ui/static/bulma/sass/utilities/mixins.sass,sha256=oijSh2f1DPqod0W5op9iVEAFbC1huMqBIJmnHRx3exc,6291
118
+ accrete/contrib/ui/static/css/accrete.css,sha256=MDcRrac49yHqzAXr1-GKHJA02i3Q2-4TD75Rd84u04c,250234
119
+ accrete/contrib/ui/static/css/accrete.css.bak,sha256=2RErGa8_tm8lFSamfW3UfqPgEVkPDejk2fh8IidW-B0,2359
120
+ accrete/contrib/ui/static/css/accrete.css.map,sha256=Pec-sc7JZdG8USObEYkXF5ddooIs8j0bvhimxLMjmFc,55367
121
+ accrete/contrib/ui/static/css/accrete.scss,sha256=DgYoMsrBYgRWFSaB8GeFs6rRhDW9xZUbHgrM8OOXCp8,2471
122
+ accrete/contrib/ui/static/css/icons.css,sha256=3CsD9CLxOWHwQG6qrIAGc-28o89ef9dwTMaN3syJER8,3462
123
+ accrete/contrib/ui/static/icons/Logo.svg,sha256=hGZuxrAa-LRpFavFiF8Lnc7X9OQcqmb6Xl_dxx-27hM,1861
124
+ accrete/contrib/ui/static/icons/accrete.svg,sha256=CWHJKIgk3hxL7xIaFSz2j1cK-eF1TroCbjcF58bgOIs,1024
125
+ accrete/contrib/ui/static/js/filter.js,sha256=tQl8qCC9FQohelC1gnqp_kzfT5HcGJG84wq1Hex8zcM,21181
126
+ accrete/contrib/ui/static/js/list.js,sha256=OX_81ifRmawE-1QBU5Qpq_E6sHiiNwIPleETAn9EOJw,4280
127
+ accrete/contrib/ui/static/js/navbar.js,sha256=9QGZfPgGWjCBZhZhrRf983hoPnRlwQP-Pl73c2vISYs,628
128
+ accrete/contrib/ui/static/js/utils.js,sha256=6RKh3EJ57gx5UIjBcSaeZEs7lZdLvyYT9VAQ-WqlKSk,173
129
+ accrete/contrib/ui/templates/django/forms/widgets/attrs.html,sha256=zNxjU4Ta_eWZkh1WhrF_VIwNZ0lZyl980gSSijUK51k,195
130
+ accrete/contrib/ui/templates/django/forms/widgets/email.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
131
+ accrete/contrib/ui/templates/django/forms/widgets/file.html,sha256=J1NmXmQTp6IU48K-zRdLeYl-1Tpavx6ZAo3cPIP9Y6Y,755
132
+ accrete/contrib/ui/templates/django/forms/widgets/input.html,sha256=CRu81kTsbPwis7NknCv6i7EQkOwexR9rURaRpoGHBek,248
133
+ accrete/contrib/ui/templates/django/forms/widgets/select.html,sha256=jT_UnHizHfdWTdJoSxjcIqTiR7NbVBA4bBSvkuDPRtw,394
134
+ accrete/contrib/ui/templates/django/forms/widgets/text.html,sha256=MSmLlQc7PsPoDLVtTOOiWNprrsPriNr712yFxaHyDIo,47
135
+ 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
137
+ 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
142
+ accrete/contrib/ui/templates/ui/partials/form_errors.html,sha256=1_TQvTdiejsn-43YSyp2YfnP52P-MFYb-HGY0DLm4oA,991
143
+ 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
145
+ 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/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
149
+ accrete/contrib/ui/templatetags/accrete_ui.py,sha256=LWfxxk1JDhJanbcjYNSSW1-MNvEN8etqYBBvgKKMFIs,2550
150
+ accrete/contrib/user/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
151
+ accrete/contrib/user/admin.py,sha256=YS4iApli7XUaIl9GsEJxys2j8sepX0by88omYHjff-E,85
152
+ accrete/contrib/user/apps.py,sha256=oHDrAiHf-G57mZLyxqGJzRY2DbPprGFD-QgyVJG_ruI,156
153
+ accrete/contrib/user/forms.py,sha256=FDfWiPld5EQMTHCCHTIhDdDjEU0zUBR3jo7l04kfn1c,683
154
+ accrete/contrib/user/middleware.py,sha256=qblcujwJsthopagyT-hPFq4HsMyGt-VvqZw5TQopBjk,403
155
+ accrete/contrib/user/models.py,sha256=xbDt2z03KzyJbd9mea2hRedsdddcn4614cckr_frY9s,3876
156
+ accrete/contrib/user/tests.py,sha256=mrbGGRNg5jwbTJtWWa7zSKdDyeB4vmgZCRc2nk6VY-g,60
157
+ accrete/contrib/user/urls.py,sha256=pTjnYuSHx3Mlx87uDULoWO1gB0moxTQG7YwXHsa-FTk,316
158
+ accrete/contrib/user/views.py,sha256=it6KJA88P8xFXOZKhR0CxKhGkcrIpwFDFI_nsjcVnRk,1992
159
+ accrete/contrib/user/locale/de/LC_MESSAGES/django.mo,sha256=p3rgUg6WltAVIMkQsjvjBqTsd_usLhSr1GH4Cyltc2c,433
160
+ accrete/contrib/user/locale/de/LC_MESSAGES/django.po,sha256=f_Nxpo3HTm2L3f3zoHLfeWsZ-4IQp_EEVSku6TCZSvw,1870
161
+ accrete/contrib/user/migrations/0001_initial.py,sha256=JWfM9PcMDfkJUdCjLWuWieGs6643qP0KdbCyr5uAZoY,2950
162
+ accrete/contrib/user/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
163
+ accrete/contrib/user/templates/user/accrete_navbar_end.html,sha256=PmdfM6LuYdhVbDJ62DcmwU0F3OH8KSwKzjXRc282BJk,343
164
+ 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
167
+ accrete/contrib/user_registration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
168
+ accrete/contrib/user_registration/admin.py,sha256=kwmGTsg4Hii-lsw9-UaJG7AhQ4k4SPi48GSrtpZ4YR4,119
169
+ accrete/contrib/user_registration/apps.py,sha256=mYu3fuuubfjImeJHk4D_Wd6Edw2r3oUNXGcFbAkhir4,181
170
+ accrete/contrib/user_registration/config.py,sha256=wrZuZY5ed9dCFKp5W2iRUAoHN9xAoetEU8BuuKSofRg,949
171
+ accrete/contrib/user_registration/forms.py,sha256=rTDcpVlGPDyfTRIQquJr4hNshmJEOplYDwOT782xLys,3281
172
+ accrete/contrib/user_registration/models.py,sha256=bxDQ_UTeLMmU6tjNfwVLenWuJu_WNZEm3-uPNeOAidk,398
173
+ accrete/contrib/user_registration/tests.py,sha256=mrbGGRNg5jwbTJtWWa7zSKdDyeB4vmgZCRc2nk6VY-g,60
174
+ accrete/contrib/user_registration/urls.py,sha256=lC1uHBHY3lgJVooZaMx7quTnqDsG01JQq_XRXQVjz3o,382
175
+ accrete/contrib/user_registration/views.py,sha256=sUW2QttAFjJvqZVsTrvGpZQ0qVham61zdVok9n-6pHU,3060
176
+ accrete/contrib/user_registration/migrations/0001_initial.py,sha256=XKflQ2gPgKjW28LgP_nDX6vgClxuZLJ6xWVppbEgX8M,896
177
+ accrete/contrib/user_registration/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
178
+ accrete/contrib/user_registration/templates/user_registration/registration.html,sha256=E3jcS4WwlEowzGrnIQ35B-tTrkEILBbqQrxDx2f6lys,2079
179
+ accrete/contrib/user_registration/templates/user_registration/mail_templates/confirmation_mail.html,sha256=5UkpGUrDAazrr_gKguOnOykr77a2FLgD2gnvUxzHfyg,192
180
+ accrete/migrations/0001_initial.py,sha256=azThbc8otEhxJwo8BIgOt5eC30mxXhKJLBAazZFe3BA,4166
181
+ accrete/migrations/0002_initial.py,sha256=dFOM7kdHlx7pVAh8cTDlZMtciN4O9Z547HAzEKnygZE,1628
182
+ accrete/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
183
+ accrete/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
184
+ accrete/utils/dates.py,sha256=XI58CqabLCC-Sg6qo5TPWh-pHuuZfDdGDU6KQeAMlGo,1066
185
+ accrete-0.0.19.dist-info/METADATA,sha256=gOYeSfYl9SXuSVhK8ZMdxCm0gymRX_KlA3a1X9a7zuI,4846
186
+ accrete-0.0.19.dist-info/WHEEL,sha256=9QBuHhg6FNW7lppboF2vKVbCGTVzsFykgRQjjlajrhA,87
187
+ accrete-0.0.19.dist-info/licenses/LICENSE,sha256=_7laeMIHnsd3Y2vJEXDYXq_PEXxIcjgJsGt8UIKTRWc,1057
188
+ accrete-0.0.19.dist-info/RECORD,,
@@ -1,111 +0,0 @@
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=j5VFl50Zma6CdyFWahkNeimUlDRzu8WkHB4rGWy0hhA,406
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=M3BCc3Wsbpymweny5caBe6pUENwjPgfMGdLBKWfwkYw,235
19
- accrete/contrib/sequence/models.py,sha256=zXK0aCdsDiXQU_51UZBElL6DUvnMdKEAITxPX57NNEI,886
20
- accrete/contrib/sequence/queries.py,sha256=ykSxbbYjI2n3pjZskNXBGTJk0ca7H0NFzFP-nZlVDQU,684
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=b0Aq41co9EVKRKKrsRyhHQsUHCqtbaeI90slAxSLgK0,207
36
- accrete/contrib/ui/admin.py,sha256=suMo4x8I3JBxAFBVIdE-5qnqZ6JAZV0FESABHOSc-vg,63
37
- accrete/contrib/ui/apps.py,sha256=E0ao2ox6PQ3ldfeR17FXJUUJuGiWjm2DPCxHbPXGzls,152
38
- accrete/contrib/ui/filter.py,sha256=MvfZ7n44eqcrIxfXd_drqs7mTI0ZAnD4ngt0fG9rkF4,12104
39
- accrete/contrib/ui/helper.py,sha256=gz53xPquS385HPGOIKxfdiBppx7i1DNNcbsvHnQKQF8,13331
40
- accrete/contrib/ui/tests.py,sha256=mrbGGRNg5jwbTJtWWa7zSKdDyeB4vmgZCRc2nk6VY-g,60
41
- accrete/contrib/ui/urls.py,sha256=TUBlz_CGs9InTZoxM78GSnucA73I8knoh_obt12RUHM,186
42
- accrete/contrib/ui/views.py,sha256=WpBKMsxFFG8eG4IN7TW_TPE6i3OFF7gnLDTK7JMKti8,191
43
- accrete/contrib/ui/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
44
- accrete/contrib/ui/static/css/accrete.css,sha256=2RErGa8_tm8lFSamfW3UfqPgEVkPDejk2fh8IidW-B0,2359
45
- accrete/contrib/ui/static/css/icons.css,sha256=3CsD9CLxOWHwQG6qrIAGc-28o89ef9dwTMaN3syJER8,3462
46
- accrete/contrib/ui/static/icons/Logo.svg,sha256=hGZuxrAa-LRpFavFiF8Lnc7X9OQcqmb6Xl_dxx-27hM,1861
47
- accrete/contrib/ui/static/icons/accrete.svg,sha256=CWHJKIgk3hxL7xIaFSz2j1cK-eF1TroCbjcF58bgOIs,1024
48
- accrete/contrib/ui/static/js/filter.js,sha256=tQl8qCC9FQohelC1gnqp_kzfT5HcGJG84wq1Hex8zcM,21181
49
- accrete/contrib/ui/static/js/list.js,sha256=OX_81ifRmawE-1QBU5Qpq_E6sHiiNwIPleETAn9EOJw,4280
50
- accrete/contrib/ui/static/js/navbar.js,sha256=9QGZfPgGWjCBZhZhrRf983hoPnRlwQP-Pl73c2vISYs,628
51
- accrete/contrib/ui/static/js/utils.js,sha256=6RKh3EJ57gx5UIjBcSaeZEs7lZdLvyYT9VAQ-WqlKSk,173
52
- accrete/contrib/ui/templates/django/forms/widgets/attrs.html,sha256=zNxjU4Ta_eWZkh1WhrF_VIwNZ0lZyl980gSSijUK51k,195
53
- accrete/contrib/ui/templates/django/forms/widgets/email.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48
54
- accrete/contrib/ui/templates/django/forms/widgets/file.html,sha256=J1NmXmQTp6IU48K-zRdLeYl-1Tpavx6ZAo3cPIP9Y6Y,755
55
- accrete/contrib/ui/templates/django/forms/widgets/input.html,sha256=CRu81kTsbPwis7NknCv6i7EQkOwexR9rURaRpoGHBek,248
56
- accrete/contrib/ui/templates/django/forms/widgets/select.html,sha256=jT_UnHizHfdWTdJoSxjcIqTiR7NbVBA4bBSvkuDPRtw,394
57
- accrete/contrib/ui/templates/django/forms/widgets/text.html,sha256=MSmLlQc7PsPoDLVtTOOiWNprrsPriNr712yFxaHyDIo,47
58
- accrete/contrib/ui/templates/django/forms/widgets/textarea.html,sha256=c9BTedqb3IkXLyVYd0p9pR8DFnsXCNGoxVBWZTk_Fic,278
59
- accrete/contrib/ui/templates/ui/detail.html,sha256=m-CpLcoK-dL5jPlIY6Hzyq2EyEqcFZ5Bn-kB-T0Oqao,510
60
- accrete/contrib/ui/templates/ui/form.html,sha256=HpcZCDU_ur_Zf5gpnH_F8OV6qfOYPl6Ecqg6w5RIayQ,405
61
- accrete/contrib/ui/templates/ui/layout.html,sha256=l1DkpaNe8D87XkLPr1A2jESVFzv97_XO6TmWVCYhlso,8172
62
- accrete/contrib/ui/templates/ui/list.html,sha256=HsmJAWDZU-qCPh4mrc8vGzkULbViG5fnLcmmp-NO2-4,671
63
- accrete/contrib/ui/templates/ui/table.html,sha256=77xxSVr8LMn33T1_CmNSR4BKsQD8QFpiJX52zyvcQYE,1690
64
- accrete/contrib/ui/templates/ui/partials/filter.html,sha256=NoObTFsT1JM_cTQt0Dj_97AoEtA_8hcumsT1Ipml31A,2121
65
- accrete/contrib/ui/templates/ui/partials/form_errors.html,sha256=1_TQvTdiejsn-43YSyp2YfnP52P-MFYb-HGY0DLm4oA,991
66
- accrete/contrib/ui/templates/ui/partials/form_modal.html,sha256=FFDfI5qjOCUBSGqDjBXa8tcqN2q94wOOCNFDaiyplHQ,1032
67
- accrete/contrib/ui/templates/ui/partials/header.html,sha256=hBqer5PMQqsvUMGpjnpGdYOimoJsIhxjKDbZnEu5Dps,2609
68
- accrete/contrib/ui/templates/ui/partials/onchange_form.html,sha256=K5twTGqRUW1iM2dGtdWntjsJvJVo5EIzKxX2HK-H1yw,160
69
- accrete/contrib/ui/templates/ui/partials/pagination_detail.html,sha256=ft0w4phwCBhaH4sRiupRejii9CcZCAOLxme9j12NelU,908
70
- accrete/contrib/ui/templates/ui/partials/pagination_list.html,sha256=BZGxJ2ooFp_sFtiqQ6IWpRy3-N0SYhqBicy1zdnBQaY,1172
71
- accrete/contrib/ui/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
72
- accrete/contrib/ui/templatetags/accrete_ui.py,sha256=LWfxxk1JDhJanbcjYNSSW1-MNvEN8etqYBBvgKKMFIs,2550
73
- accrete/contrib/user/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
74
- accrete/contrib/user/admin.py,sha256=YS4iApli7XUaIl9GsEJxys2j8sepX0by88omYHjff-E,85
75
- accrete/contrib/user/apps.py,sha256=oHDrAiHf-G57mZLyxqGJzRY2DbPprGFD-QgyVJG_ruI,156
76
- accrete/contrib/user/forms.py,sha256=FDfWiPld5EQMTHCCHTIhDdDjEU0zUBR3jo7l04kfn1c,683
77
- accrete/contrib/user/middleware.py,sha256=qblcujwJsthopagyT-hPFq4HsMyGt-VvqZw5TQopBjk,403
78
- accrete/contrib/user/models.py,sha256=xbDt2z03KzyJbd9mea2hRedsdddcn4614cckr_frY9s,3876
79
- accrete/contrib/user/tests.py,sha256=mrbGGRNg5jwbTJtWWa7zSKdDyeB4vmgZCRc2nk6VY-g,60
80
- accrete/contrib/user/urls.py,sha256=pTjnYuSHx3Mlx87uDULoWO1gB0moxTQG7YwXHsa-FTk,316
81
- accrete/contrib/user/views.py,sha256=PN_ujGsIsYlxexzdqNnmpp4thbe60aoFJK-vOXUPPIw,1882
82
- accrete/contrib/user/locale/de/LC_MESSAGES/django.mo,sha256=p3rgUg6WltAVIMkQsjvjBqTsd_usLhSr1GH4Cyltc2c,433
83
- accrete/contrib/user/locale/de/LC_MESSAGES/django.po,sha256=f_Nxpo3HTm2L3f3zoHLfeWsZ-4IQp_EEVSku6TCZSvw,1870
84
- accrete/contrib/user/migrations/0001_initial.py,sha256=JWfM9PcMDfkJUdCjLWuWieGs6643qP0KdbCyr5uAZoY,2950
85
- accrete/contrib/user/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
86
- accrete/contrib/user/templates/user/accrete_navbar_end.html,sha256=PmdfM6LuYdhVbDJ62DcmwU0F3OH8KSwKzjXRc282BJk,343
87
- accrete/contrib/user/templates/user/login.html,sha256=qKUqF5WCkWPrbwQMaa05Ou7zkM_CeVrJzHsjsDWNPhQ,1644
88
- accrete/contrib/user/templates/user/user_detail.html,sha256=BM-a2U25EPYfigWZ6zlvemoxysi2GznbyiCrc-5v1AM,1194
89
- accrete/contrib/user/templates/user/user_form.html,sha256=RJ9dXEgH4H6o1PoSgR6bfadJ05Xht8ZXl1WKEpxK7Cc,1923
90
- accrete/contrib/user_registration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
91
- accrete/contrib/user_registration/admin.py,sha256=kwmGTsg4Hii-lsw9-UaJG7AhQ4k4SPi48GSrtpZ4YR4,119
92
- accrete/contrib/user_registration/apps.py,sha256=mYu3fuuubfjImeJHk4D_Wd6Edw2r3oUNXGcFbAkhir4,181
93
- accrete/contrib/user_registration/config.py,sha256=wrZuZY5ed9dCFKp5W2iRUAoHN9xAoetEU8BuuKSofRg,949
94
- accrete/contrib/user_registration/forms.py,sha256=rTDcpVlGPDyfTRIQquJr4hNshmJEOplYDwOT782xLys,3281
95
- accrete/contrib/user_registration/models.py,sha256=bxDQ_UTeLMmU6tjNfwVLenWuJu_WNZEm3-uPNeOAidk,398
96
- accrete/contrib/user_registration/tests.py,sha256=mrbGGRNg5jwbTJtWWa7zSKdDyeB4vmgZCRc2nk6VY-g,60
97
- accrete/contrib/user_registration/urls.py,sha256=lC1uHBHY3lgJVooZaMx7quTnqDsG01JQq_XRXQVjz3o,382
98
- accrete/contrib/user_registration/views.py,sha256=sUW2QttAFjJvqZVsTrvGpZQ0qVham61zdVok9n-6pHU,3060
99
- accrete/contrib/user_registration/migrations/0001_initial.py,sha256=XKflQ2gPgKjW28LgP_nDX6vgClxuZLJ6xWVppbEgX8M,896
100
- accrete/contrib/user_registration/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
101
- accrete/contrib/user_registration/templates/user_registration/registration.html,sha256=E3jcS4WwlEowzGrnIQ35B-tTrkEILBbqQrxDx2f6lys,2079
102
- accrete/contrib/user_registration/templates/user_registration/mail_templates/confirmation_mail.html,sha256=5UkpGUrDAazrr_gKguOnOykr77a2FLgD2gnvUxzHfyg,192
103
- accrete/migrations/0001_initial.py,sha256=azThbc8otEhxJwo8BIgOt5eC30mxXhKJLBAazZFe3BA,4166
104
- accrete/migrations/0002_initial.py,sha256=dFOM7kdHlx7pVAh8cTDlZMtciN4O9Z547HAzEKnygZE,1628
105
- accrete/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
106
- accrete/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
107
- accrete/utils/dates.py,sha256=XI58CqabLCC-Sg6qo5TPWh-pHuuZfDdGDU6KQeAMlGo,1066
108
- accrete-0.0.17.dist-info/METADATA,sha256=9321bzAzQZB0DlS9QdJI0Si4lXP5FZ2jc2kPTJ5qh3E,4846
109
- accrete-0.0.17.dist-info/WHEEL,sha256=9QBuHhg6FNW7lppboF2vKVbCGTVzsFykgRQjjlajrhA,87
110
- accrete-0.0.17.dist-info/licenses/LICENSE,sha256=_7laeMIHnsd3Y2vJEXDYXq_PEXxIcjgJsGt8UIKTRWc,1057
111
- accrete-0.0.17.dist-info/RECORD,,