class EntryAdmin(admin.ModelAdmin):
date_hierarchy = 'date'
+ readonly_fields = ('date', 'changed_at') + translated_fields(('published_at',))
fieldsets = (
- (None, {'fields': (('type', 'promo'), 'author', 'author_email', 'image')}),
+ (None, {'fields': (('type', 'promo'), 'author', 'author_email', 'image', 'date', 'changed_at')}),
) + tuple(
(ln, {'fields': (
('published_%s' % lc),
+ 'published_at_%s' % lc,
'title_%s' % lc,
'slug_%s' % lc,
'lead_%s' % lc,
) + tuple(
(ln, {'fields': (
('needed_%s' % lc, 'published_%s' % lc),
+ 'published_at_%s' % lc,
'title_%s' % lc,
'slug_%s' % lc,
'lead_%s' % lc,