app/django/contrib/redirects/admin.py
author Lennard de Rijk <ljvderijk@gmail.com>
Mon, 25 May 2009 23:45:20 +0200
changeset 2348 0edff67b472d
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Fixed model name and comment typo's in task model. Also changed the corresponding reference properties.


from django.contrib import admin
from django.contrib.redirects.models import Redirect

class RedirectAdmin(admin.ModelAdmin):
    list_display = ('old_path', 'new_path')
    list_filter = ('site',)
    search_fields = ('old_path', 'new_path')
    radio_fields = {'site': admin.VERTICAL}

admin.site.register(Redirect, RedirectAdmin)