)
save_on_top = True
save_as = True
+ list_display = ('__unicode__', 'slug', 'get_path',)
class ModelLookupWidget(forms.TextInput):
contentreference.content = content
contentreference.save()
+class RedirectAdmin(admin.ModelAdmin):
+ list_display=('slug', 'target', 'status_code',)
+ list_filter=('status_code',)
admin.site.register(Collection, CollectionAdmin)
-admin.site.register(Redirect)
+admin.site.register(Redirect, RedirectAdmin)
admin.site.register(File)
admin.site.register(Page, PageAdmin)
admin.site.register(Template, TemplateAdmin)
class Page(Node):
"""
- Represents an HTML page. The page will have a number of related Contentlets
- depending on the template selected - but these will appear only after the
- page has been saved with that template.
+ Represents an HTML page. The page will have a number of related Contentlets depending on the template selected - but these will appear only after the page has been saved with that template.
"""
template = models.ForeignKey(Template, related_name='pages')
title = models.CharField(max_length=255)