Hi Russel I had the same problem. Here the traceback: ViewDoesNotExist at /admin/
Could not import django.views.generic.list_detail.object_list. Parent module django.views.generic.list_detail does not exist. Request Method: GET Request URL: http://www.gabryandjenny.com/admin/ Django Version: 1.5.4 Exception Type: ViewDoesNotExist Exception Value: Could not import django.views.generic.list_detail.object_list. Parent module django.views.generic.list_detail does not exist. Exception Location: /usr/local/alwaysdata/python/django/1.5.4/django/core/urlresolvers.py in get_callable, line 104 Python Executable: /usr/languages/python/2.6/bin/python Python Version: 2.6.6 Python Path: ['/home/alessandrocambogia', '/home/alessandrocambogia/gabryandjenny', '/home/alessandrocambogia/gabryandjenny/public', '/usr/local/lib/python2.6/site-packages/pip-0.4-py2.6.egg', '/usr/local/lib/python2.6/site-packages/Paste-1.6-py2.6.egg', '/usr/local/lib/python2.6/site-packages/trac-0.10.5-py2.6.egg', '/usr/local/lib/python2.6/site-packages/setuptools-0.6c11-py2.6.egg', '/usr/local/lib/python2.6/site-packages/lamson-1.0-py2.6.egg', '/usr/local/lib/python2.6/site-packages/python_daemon-1.5.5-py2.6.egg', '/usr/local/lib/python2.6/site-packages/mock-0.7.0b2-py2.6.egg', '/usr/local/lib/python2.6/site-packages/lockfile-0.8-py2.6.egg', '/home/alessandrocambogia/gabryandjenny/public', '/usr/local/alwaysdata/python/django/1.5.4', '/usr/languages/python/2.6/lib/python26.zip', '/usr/languages/python/2.6/lib/python2.6', '/usr/languages/python/2.6/lib/python2.6/plat-linux2', '/usr/languages/python/2.6/lib/python2.6/lib-tk', '/usr/languages/python/2.6/lib/python2.6/lib-old', '/usr/languages/python/2.6/lib/python2.6/lib-dynload', '/usr/languages/python/2.6/lib/python2.6/site-packages', '/usr/local/lib/python2.6/site-packages', '/usr/local/lib/python2.6/site-packages/PIL', '/usr/lib/python2.6/site-packages', '/home/alessandrocambogia/gabryandjenny/gabryandjennyProject/', '/home/alessandrocambogia/gabryandjenny/gabryandjennyProject/'] Server time: Sat, 21 Dec 2013 06:15:16 -0600 Environment: Request Method: GET Request URL: http://www.gabryandjenny.com/admin/ Django Version: 1.5.4 Python Version: 2.6.6 Installed Applications: ('django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'django.contrib.messages', 'django.contrib.staticfiles', 'django.contrib.admin', 'django.contrib.sitemaps', 'modeltranslation', 'gabryandjennyApp', 'south', 'mptt', 'feincms', 'tinymce') 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') Traceback: File "/usr/local/alwaysdata/python/django/1.5.4/django/core/handlers/base.py" in get_response 115. response = callback(request, *callback_args, **callback_kwargs) File "/usr/local/alwaysdata/python/django/1.5.4/django/contrib/admin/sites.py" in wrapper 219. return self.admin_view(view, cacheable)(*args, **kwargs) File "/usr/local/alwaysdata/python/django/1.5.4/django/utils/decorators.py" in _wrapped_view 91. response = view_func(request, *args, **kwargs) File "/usr/local/alwaysdata/python/django/1.5.4/django/views/decorators/cache.py" in _wrapped_view_func 89. response = view_func(request, *args, **kwargs) File "/usr/local/alwaysdata/python/django/1.5.4/django/contrib/admin/sites.py" in inner 198. current_app=self.name): File "/usr/local/alwaysdata/python/django/1.5.4/django/core/urlresolvers.py" in reverse 467. app_list = resolver.app_dict[ns] File "/usr/local/alwaysdata/python/django/1.5.4/django/core/urlresolvers.py" in app_dict 311. self._populate() File "/usr/local/alwaysdata/python/django/1.5.4/django/core/urlresolvers.py" in _populate 274. for name in pattern.reverse_dict: File "/usr/local/alwaysdata/python/django/1.5.4/django/core/urlresolvers.py" in reverse_dict 297. self._populate() File "/usr/local/alwaysdata/python/django/1.5.4/django/core/urlresolvers.py" in _populate 286. lookups.appendlist(pattern.callback, (bits, p_pattern, pattern.default_args)) File "/usr/local/alwaysdata/python/django/1.5.4/django/core/urlresolvers.py" in callback 230. self._callback = get_callable(self._callback_str) File "/usr/local/alwaysdata/python/django/1.5.4/django/utils/functional.py" in wrapper 31. result = func(*args) File "/usr/local/alwaysdata/python/django/1.5.4/django/core/urlresolvers.py" in get_callable 104. (lookup_view, mod_name)) Exception Type: ViewDoesNotExist at /admin/ Exception Value: Could not import django.views.generic.list_detail.object_list. Parent module django.views.generic.list_detail does not exist. Any suggestion? Thank you Gabri Il giorno lunedì 15 aprile 2013 06:13:22 UTC+7, Russell Keith-Magee ha scritto: > > Hi Daniel, > > The error you've described isn't related to the admin site at all -- the > problem lies somewhere else in your codebase. > > django.views.generic.list_detail.object_list was one of the old > function-based generic views; it was deprecated in Django 1.3, and removed > entirely in Django 1.5. You have code that is using (or at least > referencing) this old view. > > Without knowing what else is in your project, or seeing the full stack > trace, it's impossible to say exactly what is causing this error. It's > possible the problem is being caused by a third party Django app that > you've included in your project. > > Yours, > Russ Magee %-) > > On Sat, Apr 13, 2013 at 9:15 AM, Daniel Guo <[email protected]<javascript:> > > wrote: > >> Hi all, >> I've spent lot of time trying to figure out what is going on there, but >> my admin site is still not working. >> >> I just followed the Django tutorial to create an app named polls. But I >> have a customized template_dir which is used by my previous app. >> >> All the configurations to activate admin site are the same from official >> tutorial. But when I am trying to access the admin site: >> http://127.0.0.1:8000/admin/ >> >> I got the exceptions below: >> >> Could not import django.views.generic.list_detail.object_list. Parent module >> django.views.generic.list_detail does not exist. >> >> Request Method:GETRequest URL: http://127.0.0.1:8000/admin/Django >> Version: 1.5.1Exception Type: ViewDoesNotExistException Value: >> >> Could not import django.views.generic.list_detail.object_list. Parent module >> django.views.generic.list_detail does not exist. >> >> Exception >> Location:/usr/local/lib/python2.7/dist-packages/django/core/urlresolvers.py >> in get_callable, line 104 Python Executable:/usr/bin/pythonPython >> Version: 2.7.3Python Path: >> >> ['/home/daniel/Django-workspace/firstProject', >> '/usr/local/lib/python2.7/dist-packages/oauth2-1.5.211-py2.7.egg', >> '/usr/lib/python2.7', >> '/usr/lib/python2.7/plat-linux2', >> '/usr/lib/python2.7/lib-tk', >> '/usr/lib/python2.7/lib-old', >> '/usr/lib/python2.7/lib-dynload', >> '/usr/local/lib/python2.7/dist-packages', >> '/usr/local/lib/python2.7/dist-packages/PIL', >> '/usr/lib/python2.7/dist-packages', >> '/usr/lib/python2.7/dist-packages/gst-0.10', >> '/usr/lib/python2.7/dist-packages/gtk-2.0', >> '/usr/lib/pymodules/python2.7', >> '/usr/lib/python2.7/dist-packages/ubuntu-sso-client', >> '/usr/lib/python2.7/dist-packages/ubuntuone-client', >> '/usr/lib/python2.7/dist-packages/ubuntuone-control-panel', >> '/usr/lib/python2.7/dist-packages/ubuntuone-couch', >> '/usr/lib/python2.7/dist-packages/ubuntuone-storage-protocol'] >> >> Server time: Fri, 12 Apr 2013 20:12:16 -0500 >> >> >> Not like most of the similar issues from google. I found there is >> something wrong with the 'django.views.generic.list_detail does not exist >> '?? >> I am new to Django, could you please give me some hints to solve this? >> >> Thanks a lot >> >> -- >> 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 [email protected] <javascript:>. >> To post to this group, send email to [email protected]<javascript:> >> . >> Visit this group at http://groups.google.com/group/django-users?hl=en. >> For more options, visit https://groups.google.com/groups/opt_out. >> >> >> > > -- 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 [email protected]. To post to this group, send email to [email protected]. 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/a47a04d5-6f1e-4205-9318-8f2bf836ff22%40googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.

