Ticket #7133: 7133-remove-radio_admin-from-redirects-contrib.diff
File 7133-remove-radio_admin-from-redirects-contrib.diff, 702 bytes (added by , 17 years ago) |
---|
-
django/contrib/redirects/models.py
3 3 from django.utils.translation import ugettext_lazy as _ 4 4 5 5 class Redirect(models.Model): 6 site = models.ForeignKey(Site , radio_admin=models.VERTICAL)6 site = models.ForeignKey(Site) 7 7 old_path = models.CharField(_('redirect from'), max_length=200, db_index=True, 8 8 help_text=_("This should be an absolute path, excluding the domain name. Example: '/events/search/'.")) 9 9 new_path = models.CharField(_('redirect to'), max_length=200, blank=True,