Rich @ enzedonline
Rich @ enzedonline
Full support for this - please also include translated snippets. Maybe a 3-way configurable option (always, never, prompt first) is a good solution. Global setting with ability to override at...
3rd time setting up Analytics property and cloud project from scratch, using non-g-suite affiliated google account this time, same result. Shame, this looked like it would be a good tool.
@nRookie - thanks. Tried that with the same issue but then just created a new .env file and works fine now. Cheers.
@zerolab it's a snippet: code ```python @register_snippet class EmailSignature(TranslatableMixin, models.Model): signature_name = models.CharField( max_length=30, null=False, blank=False, verbose_name=_("Signature Name"), help_text=_("Used to identify this signature") ) signature_heading = models.CharField( max_length=50, null=False, blank=False,...
Would be good to get this resolved, still no further on understanding the cause of this and why I would get a Permission Denied error when logged in as super...
Similar issue translating snippets: ``` DoesNotExist at /admin/localize/submit/snippet/blog/personalblogcategory/9/ PersonalBlogCategory matching query does not exist. Environment: Request Method: POST Request URL: http://localhost:8000/admin/localize/submit/snippet/blog/personalblogcategory/9/ Django Version: 4.0.2 Python Version: 3.10.6 Installed Applications: ['home',...
May or may not be relevant - I had this issue with a snippet with unique_together constraint: ` unique_together = ('translation_key', 'locale'), ('locale', 'slug')` It would show the problem as...
I just wasted 4 hours on this - backup user has an exclamation in the password. Error message telling me no password supplied when it's right there in the config:...
> Just for context, @KalobTaulien [includes a lesson on StreamField validation](https://learnwagtail.com/wagtail-for-beginners/custom-streamfield-block-validation/) affected by this 😌 That lesson is for an old version of Wagtail, the code used will no longer...
Seems the use of `StructBlockValidationError` is already out in the wild, I would add the following to the end of [https://docs.wagtail.org/en/latest/advanced_topics/customisation/streamfield_blocks.html](https://docs.wagtail.org/en/latest/advanced_topics/customisation/streamfield_blocks.html) unless, as mentioned above, there's intention to provide an...