Went back and fixed spacing issues with last cleanup.
authormelinath <stephen.r.burrows@gmail.com>
Thu, 10 Jun 2010 05:03:20 +0000 (01:03 -0400)
committermelinath <stephen.r.burrows@gmail.com>
Mon, 14 Jun 2010 19:38:31 +0000 (15:38 -0400)
Also added some list display options to the redirect, template and page models to improve the admin site.

admin.py
models.py

index fa62647..73dea0a 100644 (file)
--- a/admin.py
+++ b/admin.py
@@ -65,6 +65,7 @@ class TemplateAdmin(admin.ModelAdmin):
        )
        save_on_top = True
        save_as = True
+       list_display = ('__unicode__', 'slug', 'get_path',)
 
 
 class ModelLookupWidget(forms.TextInput):
@@ -172,9 +173,12 @@ class PageAdmin(EntityAdmin):
                                        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)
index eb6ebc0..6eac9de 100644 (file)
--- a/models.py
+++ b/models.py
@@ -356,9 +356,7 @@ class Template(TreeModel):
 
 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)