diff --git a/django/contrib/comments/models.py b/django/contrib/comments/models.py
index d65440e..f418e9a 100644
a
|
b
|
class FreeCommentAdmin(admin.ModelAdmin):
|
297 | 297 | fieldsets = ( |
298 | 298 | (None, {'fields': ('content_type', 'object_id', 'site')}), |
299 | 299 | ('Content', {'fields': ('person_name', 'comment')}), |
300 | | ('Meta', {'fields': ('submit_date', 'is_public', 'ip_address', 'approved')}), |
| 300 | ('Meta', {'fields': ('is_public', 'ip_address', 'approved')}), |
301 | 301 | ) |
302 | 302 | list_display = ('person_name', 'submit_date', 'content_type', 'get_content_object') |
303 | 303 | list_filter = ('submit_date',) |