Ticket #7133: 7133-remove-radio_admin-from-redirects-contrib.diff

File 7133-remove-radio_admin-from-redirects-contrib.diff, 702 bytes (added by trbs, 16 years ago)
  • django/contrib/redirects/models.py

     
    33from django.utils.translation import ugettext_lazy as _
    44
    55class Redirect(models.Model):
    6     site = models.ForeignKey(Site, radio_admin=models.VERTICAL)
     6    site = models.ForeignKey(Site)
    77    old_path = models.CharField(_('redirect from'), max_length=200, db_index=True,
    88        help_text=_("This should be an absolute path, excluding the domain name. Example: '/events/search/'."))
    99    new_path = models.CharField(_('redirect to'), max_length=200, blank=True,
Back to Top