Bug in admin models?

104 views
Skip to first unread message

Derek

unread,
Oct 23, 2013, 12:34:19 PM10/23/13
to django-users
I am trying to add a model entry, via the admin; I get this error (which has not happened before), running Django on Ubuntu 12.04 with the test server.  Not sure if there is an error with the model (which has worked fine up to now) or ...?


Request Method: POST
Request URL: http://127.0.0.1:8000/admin/myapp/mymodel/add/

Django Version: 1.5.4
Python Version: 2.7.3
Installed Applications:
('django.contrib.auth',
 'django.contrib.contenttypes',
 'django.contrib.sessions',
 'django.contrib.staticfiles',
 'django.contrib.messages',
 'django.contrib.admindocs',
 'django_nose',
 'django_extensions',
 'crispy_forms',
 'autocomplete_light',
 'admin_enhancer',
 'smart_selects',
 'selectable',
 'massadmin',
 's2.myapp,
 'suit',
 'django.contrib.admin')
Installed Middleware:
('django.middleware.common.CommonMiddleware',
 'django.contrib.sessions.middleware.SessionMiddleware',
 'django.middleware.csrf.CsrfViewMiddleware',
 'django.contrib.auth.middleware.AuthenticationMiddleware',
 'django.contrib.messages.middleware.MessageMiddleware',
 's2s.middle.middleware.AdminSessionMiddleware')


Traceback:
File "/usr/local/lib/python2.7/dist-packages/django/core/handlers/base.py" in get_response
  115.                         response = callback(request, *callback_args, **callback_kwargs)
File "/usr/local/lib/python2.7/dist-packages/django/contrib/admin/options.py" in wrapper
  372.                 return self.admin_site.admin_view(view)(*args, **kwargs)
File "/usr/local/lib/python2.7/dist-packages/django/utils/decorators.py" in _wrapped_view
  91.                     response = view_func(request, *args, **kwargs)
File "/usr/local/lib/python2.7/dist-packages/django/views/decorators/cache.py" in _wrapped_view_func
  89.         response = view_func(request, *args, **kwargs)
File "/usr/local/lib/python2.7/dist-packages/django/contrib/admin/sites.py" in inner
  202.             return view(request, *args, **kwargs)
File "/usr/local/lib/python2.7/dist-packages/django/utils/decorators.py" in _wrapper
  25.             return bound_func(*args, **kwargs)
File "/usr/local/lib/python2.7/dist-packages/django/utils/decorators.py" in _wrapped_view
  91.                     response = view_func(request, *args, **kwargs)
File "/usr/local/lib/python2.7/dist-packages/django/utils/decorators.py" in bound_func
  21.                 return func(self, *args2, **kwargs2)
File "/usr/local/lib/python2.7/dist-packages/django/db/transaction.py" in inner
  223.                 return func(*args, **kwargs)
File "/usr/local/lib/python2.7/dist-packages/django/contrib/admin/options.py" in add_view
  1009.                 self.log_addition(request, new_object)
File "/usr/local/lib/python2.7/dist-packages/django/contrib/admin/options.py" in log_addition
  530.             action_flag     = ADDITION
File "/usr/local/lib/python2.7/dist-packages/django/contrib/admin/models.py" in log_action
  18.         e = self.model(None, None, user_id, content_type_id, smart_text(object_id), object_repr[:200], action_flag, change_message)

Exception Type: TypeError at /admin/myapp/mymodel/add/
Exception Value: 'NoneType' object has no attribute '__getitem__'

Sandro Dutra

unread,
Oct 23, 2013, 1:22:54 PM10/23/13
to django...@googlegroups.com
Can't see the django.contrib.admin in INSTALLED_APPS.


2013/10/23 Derek <game...@gmail.com>

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users...@googlegroups.com.
To post to this group, send email to django...@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAF1Wu3PHp7FM8yge3YLRQuMFaCw24ENzTOuuhYmW54QADXRg%2BA%40mail.gmail.com.
For more options, visit https://groups.google.com/groups/opt_out.

Derek

unread,
Oct 24, 2013, 9:20:23 AM10/24/13
to django...@googlegroups.com
Yes, its there - the line after 'suit'.

Nigel Legg

unread,
Oct 24, 2013, 10:17:17 AM10/24/13
to django...@googlegroups.com
In installed apps you have s2.myapp, the traceback is just myapp.  Also you have 's2.myapp, in the installed_apps, should it not be 's2.myapp', (ie missing the end quote)?


Cheers, Nigel
07914 740972



Derek

unread,
Oct 25, 2013, 9:51:05 AM10/25/13
to django...@googlegroups.com
Yes, I simplified the names in the installed list and traceback, and as result probably altered the correct grammer slighlty ... but I am hoping that someone who understand the "innards" of the Django admin can point what is _actually_ wrong; given that the error trace is not actually referencing any lines in my app/project.

Sandro Dutra

unread,
Oct 25, 2013, 2:26:39 PM10/25/13
to django...@googlegroups.com
Sorry, I didn't see the django.contrib.admin. You're overrriding the add method for you model? Because it's appear the add method is returning None:


Exception Type: TypeError at /admin/myapp/mymodel/add/
Exception Value: 'NoneType' object has no attribute '__getitem__'


2013/10/25 Derek <game...@gmail.com>
Reply all
Reply to author
Forward
0 new messages