I'm starting a project with mezzanine + widgy, and I've followed the "first widget" tutorial.
I've build a NewsContainer, which will display News, based on rules about categories and publications dates.
Traceback (most recent call last):
File "/home/fguerin/Boulot/workspace/django/intranet/virtualenv/lib/python2.7/site-packages/django/contrib/staticfiles/handlers.py", line 63, in __call__
return self.application(environ, start_response)
File "/home/fguerin/Boulot/workspace/django/intranet/virtualenv/lib/python2.7/site-packages/django/core/handlers/wsgi.py", line 189, in __call__
response = self.get_response(request)
File "/home/fguerin/Boulot/workspace/django/intranet/virtualenv/lib/python2.7/site-packages/django/core/handlers/base.py", line 218, in get_response
response = self.handle_uncaught_exception(request, resolver, sys.exc_info())
File "/home/fguerin/Boulot/workspace/django/intranet/virtualenv/lib/python2.7/site-packages/django/core/handlers/base.py", line 261, in handle_uncaught_exception
return debug.technical_500_response(request, *exc_info)
File "/home/fguerin/Boulot/workspace/django/intranet/virtualenv/lib/python2.7/site-packages/django_extensions/management/technical_response.py", line 5, in null_technical_500_response
six.reraise(exc_type, exc_value, tb)
File "/home/fguerin/Boulot/workspace/django/intranet/virtualenv/lib/python2.7/site-packages/django/core/handlers/base.py", line 132, in get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/home/fguerin/Boulot/workspace/django/intranet/virtualenv/lib/python2.7/site-packages/django/views/generic/base.py", line 71, in view
return self.dispatch(request, *args, **kwargs)
File "/home/fguerin/Boulot/workspace/django/intranet/virtualenv/lib/python2.7/site-packages/argonauts/views.py", line 97, in dispatch
return super(RestView, self).dispatch(*args, **kwargs)
File "/home/fguerin/Boulot/workspace/django/intranet/virtualenv/lib/python2.7/site-packages/django/views/generic/base.py", line 89, in dispatch
return handler(request, *args, **kwargs)
File "/home/fguerin/Boulot/workspace/django/intranet/virtualenv/lib/python2.7/site-packages/widgy/views/api.py", line 124, in post
content = create_content(self.site, content_class)
File "/home/fguerin/Boulot/workspace/django/intranet/virtualenv/lib/python2.7/site-packages/widgy/models/base.py", line 611, in add_child
self.node.add_child(content=obj)
File "/home/fguerin/Boulot/workspace/django/intranet/virtualenv/lib/python2.7/site-packages/widgy/models/base.py", line 337, in add_child
return super(Node, self).add_child(*args, **kwargs)
File "/home/fguerin/Boulot/workspace/django/intranet/virtualenv/lib/python2.7/site-packages/treebeard/mp_tree.py", line 970, in add_child
return MP_AddChildHandler(self, **kwargs).process()
File "/home/fguerin/Boulot/workspace/django/intranet/virtualenv/lib/python2.7/site-packages/treebeard/mp_tree.py", line 359, in process
newobj.path = self.node.get_last_child()._inc_path()
AttributeError: 'NoneType' object has no attribute '_inc_path'
I've tryied to insert other kind of widgets, but I've the same issue.
I've the same issue from main layout editor and from the "Pop out" editor .
Hi,
I'm starting a project with mezzanine + widgy, and I've followed the "first widget" tutorial.
I've build a
NewsContainer, which will displayNews, based on rules about categories and publications dates.Each
Newsis a Content instance, but it is not registered with the @widgy.register decorator : it is administrated elsewhere.The insertion of my NewsContainer works perfectly when I insert it into the
Main contentlayout container, but it does not when I insert it into theSidebarcontainer...I've the following error :
I've tryied to insert other kind of widgets, but I've the same issue.
I've the same issue from main layout editor and from the "Pop out" editor .
Thanks for any help !