Re: get_absolute_url method append extra text

2009-04-14 Thread nixon66
Alex, Thanks Ron On Apr 14, 11:22 am, Alex Gaynor wrote: > On Tue, Apr 14, 2009 at 11:19 AM, nixon66 wrote: > > > Alex, > > > Ok, I'm going to ram my head into a wall now. Seriously thanks. > > > On Apr 14, 11:03 am, Alex Gaynor

Re: get_absolute_url method append extra text

2009-04-14 Thread Alex Gaynor
On Tue, Apr 14, 2009 at 11:19 AM, nixon66 wrote: > > Alex, > > Ok, I'm going to ram my head into a wall now. Seriously thanks. > > On Apr 14, 11:03 am, Alex Gaynor wrote: > > On Tue, Apr 14, 2009 at 11:01 AM, nixon66 wrote: > > >

Re: get_absolute_url method append extra text

2009-04-14 Thread nixon66
Alex, Ok, I'm going to ram my head into a wall now. Seriously thanks. On Apr 14, 11:03 am, Alex Gaynor wrote: > On Tue, Apr 14, 2009 at 11:01 AM, nixon66 wrote: > > > I have this model with an get_absolute_url method. > > > class

Re: get_absolute_url method append extra text

2009-04-14 Thread Alex Gaynor
On Tue, Apr 14, 2009 at 11:01 AM, nixon66 wrote: > > > I have this model with an get_absolute_url method. > > > > class Country(models.Model): >country_cd = models.CharField(max_length=2, primary_key=True) >country = models.CharField(max_length=80, blank=True) >

get_absolute_url method append extra text

2009-04-14 Thread nixon66
I have this model with an get_absolute_url method. class Country(models.Model): country_cd = models.CharField(max_length=2, primary_key=True) country = models.CharField(max_length=80, blank=True) slug = models.CharField(max_length=80, blank=True) class Meta: db_table =