Dear All,

I just start Django today and very enjoy with Django. I have some
trouble with Django Official Docs Tutorial 2 from
http://docs.djangoproject.com/en/dev/intro/tutorial02/

here is the error message. Can you help, what I do wrong here?

IndentationError at /admin/
unexpected indent (admin.py, line 16)
Request Method: GET
Request URL:    http://localhost:8000/admin/
Exception Type: IndentationError
Exception Value:
unexpected indent (admin.py, line 16)
Exception Location:     /Library/Python/2.5/site-packages/django/utils/
importlib.py in import_module, line 35
Python Executable:      /System/Library/Frameworks/Python.framework/
Versions/2.5/Resources/Python.app/Contents/MacOS/Python
Python Version: 2.5.1

Django version 1.2 pre-alpha.

polls/admin.py

from mysite.polls.models import Poll
from mysite.polls.models import Choice
from django.contrib import admin

class ChoiceInline(admin.TabularInline):
    model = Choice
    extra = 3

class PollAdmin(admin.ModelAdmin):
    fieldsets = [
        (None,               {'fields': ['question']}),
        ('Date information', {'fields': ['pub_date'], 'classes':
['collapse']}),
    ]
    inlines = [ChoiceInline]
        list_display = ('question','pub_date')  #line 16

        admin.site.register(Poll, PollAdmin)

best regards,

koko

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@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