accrete 0.0.117__py3-none-any.whl → 0.0.118__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- accrete/contrib/log/models.py +6 -0
- accrete/contrib/ui/templates/ui/layout.html +5 -1
- {accrete-0.0.117.dist-info → accrete-0.0.118.dist-info}/METADATA +1 -1
- {accrete-0.0.117.dist-info → accrete-0.0.118.dist-info}/RECORD +6 -6
- {accrete-0.0.117.dist-info → accrete-0.0.118.dist-info}/WHEEL +0 -0
- {accrete-0.0.117.dist-info → accrete-0.0.118.dist-info}/licenses/LICENSE +0 -0
accrete/contrib/log/models.py
CHANGED
@@ -197,6 +197,9 @@ class LogConfig(models.Model):
|
|
197
197
|
)
|
198
198
|
)
|
199
199
|
|
200
|
+
def __str__(self):
|
201
|
+
return self.model
|
202
|
+
|
200
203
|
|
201
204
|
class LogConfigField(models.Model):
|
202
205
|
|
@@ -227,3 +230,6 @@ class LogConfigField(models.Model):
|
|
227
230
|
max_length=255,
|
228
231
|
help_text=_('Name of the field to log')
|
229
232
|
)
|
233
|
+
|
234
|
+
def __str__(self):
|
235
|
+
return f'{self.log_config}.{self.field_name}'
|
@@ -83,7 +83,11 @@
|
|
83
83
|
|
84
84
|
<div class="navbar-end">
|
85
85
|
{% block navbar_end %}
|
86
|
-
<div class="navbar-item has-dropdown"
|
86
|
+
<div class="navbar-item has-dropdown" x-data="{navbarEndDropdown: false}"
|
87
|
+
x-bind:class="navbarEndDropdown ? 'is-active' : ''"
|
88
|
+
x-on:click="navbarEndDropdown = !navbarEndDropdown"
|
89
|
+
x-on:click.outside="navbarEndDropdown = !navbarEndDropdown"
|
90
|
+
>
|
87
91
|
<a id="navbar-user-name" class="navbar-link is-arrowless">{{ user }}</a>
|
88
92
|
<div id="navbar-end-dropdown" class="navbar-dropdown is-right">
|
89
93
|
<a class="navbar-item" href="{% url 'teams:teams_list' %}">{% translate 'Teams' %}</a>
|
@@ -17,7 +17,7 @@ accrete/contrib/log/admin.py,sha256=xeuLk1GdU_M0rZR8SQUzcMeWvV9ud0hz_LJmaut5eJE,
|
|
17
17
|
accrete/contrib/log/apps.py,sha256=O0Cje3MmpxPToJVgO195lBg0tRCy9Ou87-ntcdGBKM0,369
|
18
18
|
accrete/contrib/log/config.py,sha256=vRzPVbiUfpo5NGtgiJv5mEKR_h3qsYI_brxjni6-Z-Y,132
|
19
19
|
accrete/contrib/log/helper.py,sha256=Zzmwxz7vP0jdW2LCw8gDpPNBkqlELaCydz-nxGh7F5Y,2493
|
20
|
-
accrete/contrib/log/models.py,sha256=
|
20
|
+
accrete/contrib/log/models.py,sha256=XRElQUV6Obj4BCMTXE85jcpEup7m-MCRVfquxmt9_Xc,6210
|
21
21
|
accrete/contrib/log/queries.py,sha256=JMI_q6dQ0JjyORtfRPOW92of45TFxqPiwIhHEEar34o,1126
|
22
22
|
accrete/contrib/log/signals.py,sha256=OTV4Ajd3oiICLPkLBjfGmeE_FNDsUmThbwQ-K6BH6_k,2174
|
23
23
|
accrete/contrib/log/tests.py,sha256=mrbGGRNg5jwbTJtWWa7zSKdDyeB4vmgZCRc2nk6VY-g,60
|
@@ -320,7 +320,7 @@ accrete/contrib/ui/templates/django/forms/widgets/text.html,sha256=MSmLlQc7PsPoD
|
|
320
320
|
accrete/contrib/ui/templates/django/forms/widgets/textarea.html,sha256=c9BTedqb3IkXLyVYd0p9pR8DFnsXCNGoxVBWZTk_Fic,278
|
321
321
|
accrete/contrib/ui/templates/ui/content_right.html,sha256=XUF1tYpSKfO9FleYtJ2QmWPmwdLYxLHXdBLRa-BrFUs,221
|
322
322
|
accrete/contrib/ui/templates/ui/form_error.html,sha256=uA8FLdZyeU0vXJHlGK3rcBqcmXb63MLPV32uQyUTak4,348
|
323
|
-
accrete/contrib/ui/templates/ui/layout.html,sha256=
|
323
|
+
accrete/contrib/ui/templates/ui/layout.html,sha256=3kPinPxpfrqOHTopsIVaoi5TCrQMtgOmO9PRqVXPrm8,13139
|
324
324
|
accrete/contrib/ui/templates/ui/list.html,sha256=NY8DmHGl3n5O1u-_B9a_mlAck19ZmpYthzecADuc3BM,2250
|
325
325
|
accrete/contrib/ui/templates/ui/list_update.html,sha256=mLQTCgkKfVI5jrgei-Upc1u87iXL0Q63uLzXHPwMyeo,110
|
326
326
|
accrete/contrib/ui/templates/ui/message.html,sha256=t3bZ5EE7IgQYJroCdLKFeUkZiNbgKkErVYQm6Y3IKpg,532
|
@@ -381,7 +381,7 @@ accrete/utils/forms.py,sha256=IvxbXNpSd4a-JBgsTJhs2GHe-DCRWX-xnVPRcoiCzbI,3104
|
|
381
381
|
accrete/utils/log.py,sha256=BH0MBDweAjx30wGBO4F3sFhbgkSoEs7T1lLLjlYZNnA,407
|
382
382
|
accrete/utils/models.py,sha256=2xTacvcpmDK_Bp4rAK7JdVLf8HU009LYNJ6eSpMgYZI,1014
|
383
383
|
accrete/utils/views.py,sha256=AutijWetWGgjdO1PNc4gxCblT-i1fAfldNDFRbO9Sac,5012
|
384
|
-
accrete-0.0.
|
385
|
-
accrete-0.0.
|
386
|
-
accrete-0.0.
|
387
|
-
accrete-0.0.
|
384
|
+
accrete-0.0.118.dist-info/METADATA,sha256=iRBCs1FXrIzAaU3e-uKK2EGKC0OsHiqxAdv_YDGm2q8,4953
|
385
|
+
accrete-0.0.118.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
386
|
+
accrete-0.0.118.dist-info/licenses/LICENSE,sha256=_7laeMIHnsd3Y2vJEXDYXq_PEXxIcjgJsGt8UIKTRWc,1057
|
387
|
+
accrete-0.0.118.dist-info/RECORD,,
|
File without changes
|
File without changes
|