Could You also send us the definition of Book class?
Ogi

On Donnerstag 21 April 2011 10:00:17 pm you wrote:
> Hello,
> 
> I have been working through the Django Book, and I keep getting syntax
> errors in the examples in Chapter 6.
> 
> The following example works:
> 
> class BookAdmin(admin.ModelAdmin):
>     list_display = ('title', 'publisher', 'publication_date')
>     list_filter = ('publication_date',)
>     date_hierarchy = 'publication_date'
>     ordering = ('-publication_date',)
>     fields = ('title', 'authors', 'publisher', 'publication_date')
> 
> The next one, however, does not - it throws a syntax error:
> 
> class BookAdmin(admin.ModelAdmin):
>     list_display = ('title', 'publisher', 'publication_date')
>     list_filter = ('publication_date',)
>     date_hierarchy = 'publication_date'
>     ordering = ('-publication_date',)
>     fields = ('title', 'authors', 'publisher')
> 
> Nor can I add fields back in to this example or I get a syntax error:
> 
> class BookAdmin(admin.ModelAdmin):
>     list_display = ('title', 'publisher', 'publication_date')
>     list_filter = ('publication_date',)
>     date_hierarchy = 'publication_date'
>     ordering = ('-publication_date',)
>     filter_horizontal = ('authors',)
>     (would like to still define fields, but throws a syntax error)
> 
> Same with this one:
> 
> class BookAdmin(admin.ModelAdmin):
>     list_display = ('title', 'publisher', 'publication_date')
>     list_filter = ('publication_date',)
>     date_hierarchy = 'publication_date'
>     ordering = ('-publication_date',)
>     filter_horizontal = ('authors',)
>     raw_id_fields = ('publisher',)
>     (would like to still define fields, but throws a syntax error)
> 
> 
> Could someone please show me how to include "fields = ('title',
> 'authors', 'publisher')" without getting an error?
> 
> Thanks,
> Gandeida
> 

-- 
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