RealGecko
RealGecko
Yes it's working now, there was some kind of configuration issue in Firebase related to APNS certificates and developer key, which I'm not aware of cause Firebase setup and iOS...
By the way, to actually get notification on iOS(actual popup) you need to send notification like this: ```python message = Message(data=data, notification=Notification(title=title, body=body)) ``` As Android developers said to me...
Did not check that, because I don't use admin. But only message I got is mentioned in op.
https://marketplace.visualstudio.com/items?itemName=evgeniypeshkov.syntax-highlighter is an alternative if you're not using pylance
Same on Arch Linux
https://marketplace.visualstudio.com/items?itemName=monosans.djlint&ssr=false#overview You're welcome :D
I created a PR https://github.com/jazzband/django-auditlog/pull/271 which replaces `JSONField` with `TextField` while retaining original functionality. It passes all tox tests, try it out.
I don't know what changed in Django 3.1, but it fails tests with JSONField, replacing it with TextField solves the problem. > We already have many millions of audit log...
> We already had to `loads(log_entry["additional_data"]` when upgrading to 1.0a1 Nope, it's exactly what your issue about, `log_entry.additional_data` is Python dict. This two methods ensure that it'll be valid: ```python...
> ``` > .form-floating { > .select2-container--bootstrap-5 { > .select2-selection { > height: $form-floating-height; > padding: $form-floating-padding-y $form-floating-padding-x; > > > .select2-selection__rendered { > margin-top: .6rem; > margin-left: .25rem; >...