Jacob Rief
Jacob Rief
In order to replace `sass_src` against their compiled counterparts, django-sass-processor has to parse all templates. If Django's internal template parser finds something it can't understand, it complains with the above...
Is your database up, running and is migrated, before you invoke `./manage compilescss`?
This is because sass-processor makes a static code analysis including templates. In the worst case, the templatetag ``sass_processor`` is not found in one of the extended or included templates. This...
I'm not familiar with Aldryn forms. Could you please explain what you want to achieve, what Aldryn forms can do but Cascade can't.
> @jrief Do you think this refactor will help you customize the menu system? The bigger problem I have is that the menu renderer can't be replaced by a customized...
We experienced the same problem. This is caused by adding the language tabs to the admin detail view of `PageContent`. In my opinion this does not make sense, because this...
> Do you programmatically create plugins (e.g. with cascade)? Yes, through an import script. However, this script doesn't seem to be the culprit. I re-imported that content and ran `./manage.py...
Unfortunately both of them do not work. Problem is, that the string is already escaped before creating the rendering context. This could be circumvented by unescaping that string again. However,...
I found a solution for that problem. It could be solved by applying this [patch](https://github.com/jrief/django-cms/commit/3750ae321bd6eb39670e675c0ff92e1961fde58f) without sacrificing the security.
`{{ request.current_page.get_page_title|striptags }}` is quite a lot of inderiction for an object for which we already have a canonical handle. Shouldn't we disallow HTML tags in the `title`-field in the...