glanzel
glanzel
As far as I can see if you use the StreamlineField in the Email Body as described in the documentation: `class SaleEmail(Campaign): body = StreamField(DefaultBlocks())` All Page and Document Links...
This commit solves the Issue [https://github.com/neon-jungle/wagtail-birdsong/issues/8](https://github.com/neon-jungle/wagtail-birdsong/issues/8) It changes only the urls of links created in the birdsong editor all other Richt Text Field Links are left untouched. I hope that...
I had this error: ``` File "/home/username/.local/lib/python3.7/site-packages/django_baker/bakery.py", line 10, in from django.utils.six import iteritems ModuleNotFoundError: No module named 'django.utils.six' ``` i changed it into `from six import iteritems` and now...
While in [json-schema](https://json-schema.org/understanding-json-schema/reference/numeric.html#number) it is described that: "In Python, "number" is analogous to the float type" and "In Python, "integer" is analogous to the int type." In jsmodels the IntegerField...