Django

Code

Changeset 7211

Show
Ignore:
Timestamp:
03/10/08 12:50:30 (6 months ago)
Author:
brosner
Message:

newforms-admin: Fixed #6185. Removed submit_date from FreeComment ModelAdmin? as it is not an editable field.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/branches/newforms-admin/django/contrib/comments/models.py

    r7121 r7211  
    308308        (None, {'fields': ('content_type', 'object_id', 'site')}), 
    309309        ('Content', {'fields': ('person_name', 'comment')}), 
    310         ('Meta', {'fields': ('submit_date', 'is_public', 'ip_address', 'approved')}), 
     310        ('Meta', {'fields': ('is_public', 'ip_address', 'approved')}), 
    311311    ) 
    312312    list_display = ('person_name', 'submit_date', 'content_type', 'get_content_object')