You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems that some things changed in django 1.6
And django-inline fails:
urls.py -
"from django.conf.urls.defaults import patterns, url" should be changed to "from django.conf.urls import patterns, url"
inlinetrans.py
"from django.template.base import _render_value_in_context" to "from django.template.base import render_value_in_context" or smth else.
The text was updated successfully, but these errors were encountered:
It seems that some things changed in django 1.6
And django-inline fails:
urls.py -
"from django.conf.urls.defaults import patterns, url" should be changed to "from django.conf.urls import patterns, url"
inlinetrans.py
"from django.template.base import _render_value_in_context" to "from django.template.base import render_value_in_context" or smth else.
The text was updated successfully, but these errors were encountered: