0
To solve this I had to go to /static/js/profile.js
and change the value of selectorEngine
to 'acme'
. After doing this python manage.py jstools build
went fine and the page was working. It looks like Dojo has removed default support for acme and set default query to lite.
1
It seems like you have syntax errors
Since you are using single quotes in your selector you need to wrap it with double quotes or escape your single quotes using \
'.dijitInputInner[data-timespan-visibility]='monthly''
change it to this
".dijitInputInner[data-timespan-visibility]='monthly'"
- [Answer]-Django cannot import name patterns on app engine as app is working fine on heroku but not working on app engine
- [Answer]-How to do inner join in django
Source:stackexchange.com