app/django/contrib/redirects/models.py
changeset 323 ff1a9aa48cfd
parent 54 03e267d67478
--- a/app/django/contrib/redirects/models.py	Tue Oct 14 12:36:55 2008 +0000
+++ b/app/django/contrib/redirects/models.py	Tue Oct 14 16:00:59 2008 +0000
@@ -3,7 +3,7 @@
 from django.utils.translation import ugettext_lazy as _
 
 class Redirect(models.Model):
-    site = models.ForeignKey(Site, radio_admin=models.VERTICAL)
+    site = models.ForeignKey(Site)
     old_path = models.CharField(_('redirect from'), max_length=200, db_index=True,
         help_text=_("This should be an absolute path, excluding the domain name. Example: '/events/search/'."))
     new_path = models.CharField(_('redirect to'), max_length=200, blank=True,
@@ -15,10 +15,6 @@
         db_table = 'django_redirect'
         unique_together=(('site', 'old_path'),)
         ordering = ('old_path',)
-
-    class Admin:
-        list_filter = ('site',)
-        search_fields = ('old_path', 'new_path')
-
+    
     def __unicode__(self):
-        return u"%s ---> %s" % (self.old_path, self.new_path)
+        return "%s ---> %s" % (self.old_path, self.new_path)