Hi.

I changed models.py to remove a foreign key (user_id field in table
Client), and reran syncdb, but now if I try to create a record of that
type in the admin interface I get an error when I try to save a new
object.

Any idea on how to get rid of this error?  It seems the admin site is
caching some old information, but I don't know where it would cache
it.

--
John

AttributeError at /admin/timesheets/client/add/
'Client' object has no attribute 'user_id'
Request Method: POST
Request URL:    
http://admin.hbaspecto.com:8082/times/admin/timesheets/client/add/
Exception Type: AttributeError
Exception Value:
'Client' object has no attribute 'user_id'
Exception Location:     /Website/Django/times/timesheets/models.py in
__unicode__, line 12
Python Executable:      /usr/sbin/httpd
Python Version: 2.6.4

Environment:

Request Method: POST
Request URL: http://admin.hbaspecto.com:8082/times/admin/timesheets/client/add/
Django Version: 1.1.1
Python Version: 2.6.4
Installed Applications:
['django.contrib.auth',
 'django.contrib.contenttypes',
 'django.contrib.sessions',
 'django.contrib.sites',
 'times.timesheets',
 'django.contrib.admin']
Installed Middleware:
('django.middleware.common.CommonMiddleware',
 'django.contrib.sessions.middleware.SessionMiddleware',
 'django.contrib.auth.middleware.AuthenticationMiddleware')


Traceback:
File "/Website/Django/django/core/handlers/base.py" in get_response
  92.                 response = callback(request, *callback_args,
**callback_kwargs)
File "/Website/Django/django/contrib/admin/options.py" in wrapper
  226.                 return self.admin_site.admin_view(view)(*args,
**kwargs)
File "/Website/Django/django/views/decorators/cache.py" in
_wrapped_view_func
  44.         response = view_func(request, *args, **kwargs)
File "/Website/Django/django/contrib/admin/sites.py" in inner
  186.             return view(request, *args, **kwargs)
File "/Website/Django/django/db/transaction.py" in _commit_on_success
  240.                 res = func(*args, **kw)
File "/Website/Django/django/contrib/admin/options.py" in add_view
  739.                 self.log_addition(request, new_object)
File "/Website/Django/django/contrib/admin/options.py" in log_addition
  388.             object_repr     = force_unicode(object),
File "/Website/Django/django/utils/encoding.py" in force_unicode
  71.                 s = unicode(s)
File "/Website/Django/times/timesheets/models.py" in __unicode__
  12.           return self.user_id.username

Exception Type: AttributeError at /admin/timesheets/client/add/
Exception Value: 'Client' object has no attribute 'user_id'

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to